My simple portfolio blog built using 11ty and tailwindcss based on 11ty base blog Now come with dark mode.
Responsive gallery or single image using srcset via cloudinary, output webp format. ]
{% respimg path, alt, style %}
<!-- settings: -->
eleventyConfig.srcsetWidths = [
{ w: 400, v: 400 },
{ w: 600, v: 600 },
{ w: 800, v: 800 },
{ w: 1200, v: 1200 },
{ w: 1440, v: 1440 }
(figure) Image with caption tag.
{% figure path, alt %}
- Convert external links to target _blank and noreferrer for better SEO optimisation, using markdown-it & markdown-it-link-attributes plugins.
/* Markdown Overrides */
let markdownLibrary = markdownIt({
html: true,
breaks: true
}).use(markdownitlinkatt, {
pattern: /^(?!(https:\/\/kailoon\.com|#)).*$/gm,
attrs: {
target: '_blank',
rel: 'noreferrer'
}
})
eleventyConfig.setLibrary('md', markdownLibrary)
- Draft post enabled.
- Responsve images using srcset
- Cloudinary and Netlify ready.
- score 4 x 100 in Google lighthouse.
- CSSnano (minify) ready.
- Clone or download this repo and run
npm install
. - Remove unwated posts / works.
- Update the site info in
metadata.json
. - Update the homepage info
in data.json
. - Update
about.md
. - Go nuts :)
Hope you like it ❤️
The current site is built with Nextjs and hosted on Vercel and can be found here. However, I will continue to maintain this repo.