Mark Boadey

Thinks he's a Professional picture taker, but really isn't!

Just a simple site to showcase some of my work. There are many more pictures on my Flickr

Blog

const api = new GhostContentAPI({ url: 'https://blog.britman.tech', key: '2f2add8d99cffe82922eda7611, version: "v5" }); api.posts .browse({ limit: 5, include: 'tags,authors' }) .then(posts => { const container = document.getElementById('blog-container'); const html = posts.map(post => `
${post.feature_image ? `` : ''}

${post.title}

${post.excerpt}

Read more →
`).join(''); container.innerHTML = html; }) .catch(err => { console.error(err); document.getElementById('blog-container').innerHTML = '

Failed to load blog posts.

'; });