An open API service indexing awesome lists of open source software.

https://github.com/hrishiksh/blog-11ty

Blog rebuilt using 11ty
https://github.com/hrishiksh/blog-11ty

11ty 11ty-blog javascript static-site-generator

Last synced: 3 months ago
JSON representation

Blog rebuilt using 11ty

Awesome Lists containing this project

README

          

## 🎯 Target

- [x] added golang blog
- [x] Faveicon
- [x] seo headera
- [x] robots.txt
- [x] sitemap
- [x] RSS feed
- [x] responsive design
- [x] google site varification tag
- [x] Setting up tips section
- [x] 404 page
- [x] front page
- [x] bulk redirect to www and pages.dev domain
- [x] convert date shortcode to filter
- [ ] jsonld
- [ ] dark mode
- [ ] chnage prose-code bg

hi

## Saved ! maybe need in the future

To add heading links

```js
eleventyConfig.setLibrary(
"md",
markdownit().use(anchor, {
permalink: anchor.permalink.linkAfterHeader({
style: "visually-hidden",
assistiveText: (title) => `Permalink to “${title}”`,
visuallyHiddenClass: "sr-only",
placement: "before",
// class: "pr-4 text-2xl font-medium no-underline",
symbol: ``,
wrapper: [
'

',
"
",
],
}),
})
);
```