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
- Host: GitHub
- URL: https://github.com/hrishiksh/blog-11ty
- Owner: hrishiksh
- Created: 2023-07-06T19:08:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-04T13:17:11.000Z (about 2 years ago)
- Last Synced: 2025-02-23T15:15:13.491Z (8 months ago)
- Topics: 11ty, 11ty-blog, javascript, static-site-generator
- Language: Nunjucks
- Homepage:
- Size: 1.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 bghi
## 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: [
'',",
"
],
}),
})
);
```