Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bineeshb/notes
Webpages for my learning notes
https://github.com/bineeshb/notes
11ty bootstrap markdown nunjucks ssg static-site-generator
Last synced: 6 days ago
JSON representation
Webpages for my learning notes
- Host: GitHub
- URL: https://github.com/bineeshb/notes
- Owner: bineeshb
- Created: 2021-01-10T04:08:35.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-14T08:13:04.000Z (about 4 years ago)
- Last Synced: 2024-11-17T13:50:00.570Z (2 months ago)
- Topics: 11ty, bootstrap, markdown, nunjucks, ssg, static-site-generator
- Language: HTML
- Homepage: https://bineeshb.in/notes/
- Size: 396 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
Webpages to record learning notes.
## Build using:
- [11ty](https://www.11ty.dev/) for generating static site
- [Nunjucks](https://mozilla.github.io/nunjucks/) for templates & Markdown for page contents
- [Bootstrap](https://getbootstrap.com/docs/4.5/getting-started/introduction/) for styles## Commands
- Run code locally with hot-reload
`npm run start` or `npx eleventy --serve`- Build code
`npm run build` or `npx eleventy`## Folder Structure
| Folder | Contents |
| ----------------- | --------------------------------------------------------- |
| 11ty-scripts | 11ty configuration scripts |
| src/\_data | Global data files |
| src/\_includes | Include files, Extends files, Partials, or Macros |
| src/\_layouts | Templates of the site page layouts |
| src/assets/libs | External or Third-party libraries |
| src/pages | Site Pages, segregated into folders based on the category |### References
1. [11ty Tutorials](https://www.11ty.dev/docs/tutorials/)
2. [Markdown Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)