https://github.com/reatlat/test-vercel
https://github.com/reatlat/test-vercel
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/reatlat/test-vercel
- Owner: reatlat
- Created: 2023-01-03T08:58:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-03T09:26:35.000Z (over 2 years ago)
- Last Synced: 2025-01-23T01:11:13.442Z (4 months ago)
- Language: JavaScript
- Homepage: test-vercel-phi.vercel.app
- Size: 479 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Koi# Eleventy Excellent
Opiniated but easy to use Eleventy starter, based on the workflow suggested by Andy Bell's [buildexcellentwebsit.es](https://buildexcellentwebsit.es/).
If you end up using this starter, feel free to send me a link, I'd love to see it!
Also let me know if you miss any features. Currently in planning: automatically generated OpenGraph images (as fallback) and dark mode.- [Eleventy Excellent](#eleventy-excellent)
- [Preview](#preview)
- [Features](#features)
- [First steps](#first-steps)
- [Deploy directly to Netlify](#deploy-directly-to-netlify)
- [Development](#development)
- [Install dependencies](#install-dependencies)
- [Working locally](#working-locally)
- [Creating a production build](#creating-a-production-build)
- [Built with Eleventy Excellent](#built-with-eleventy-excellent)
- [Logbook](#logbook)
- [22-12-29](#22-12-29)
- [22-12-20](#22-12-20)
- [22-12-13](#22-12-13)
- [22-12-12](#22-12-12)
- [22-11-24](#22-11-24)
- [22-11-04](#22-11-04)
- [22-10-30](#22-10-30)
- [22-10-04](#22-10-04)
- [22-10-03](#22-10-03)
- [Credits and Thank yous](#credits-and-thank-yous)## Preview
https://eleventy-excellent.netlify.app/
## Features
**This starter includes:**
- The whole CSS workflow as suggested by buildexcellentwebsit.es
- Accessible site navigation, editable in `src/_data/navigation.js`
- Image optimization with Eleventy-img _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-an-image/))_
- Youtube embed with lite-youtube _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-a-video/))_
- Easy resource fetching with eleventy-fetch _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-fetched-content/))_
- Syntax highlighting via eleventy-plugin-syntaxhighlight _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-some-code/))_
- Advanced markdown handling _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-all-the-markdown/))_
- 301 redirects for Netlify _([see blog post](https://eleventy-excellent.netlify.app/blog/post-with-301-redirects/))_
- SEO basics (XML-sitemap, metadata)
- dayjs handling dates & times
- Bundling via esbuild
- RSS feed
- Links to social networks in footer
- Mastodon domain verification snippet## First steps
- **Important:** edit meta data in `src/_data/meta.js`, it's being used all over the template.
- Search for 'eleventy-excellent.netlify.app'. You'll find an entry in `src/assets/css/global/global-styles.css`. Replace with your own domain.
- Edit your social media in `src/_data/social.js` and `src/_includes/icons`. If you add new icons they must be prefixed with "social-". By default you have rss, mastodon, twitter, ko-fi, linkedin and github. Great resource: https://lucide.dev/
- Not required, but recommended: Delete `github.js` in `src/_data/github.js` and the blog posts, as these serve only as an example.
- Edit your preferences (colors, fluid text sizes etc.) in `src/assets/css/design-tokens`.
- Optional: set your (favicon) icons in `src/assets/images/favicon`.## Deploy directly to Netlify
[](https://app.netlify.com/start/deploy?repository=https://github.com/madrilene/eleventy-excellent)
## Development
### Install dependencies
```
npm install
```### Working locally
Starts watch tasks to compile when changes detected
```
npm start
```### Creating a production build
Minify JS, CSS and HTML.
```
npm run build
```## Built with Eleventy Excellent
- [andystitt.com](https://andystitt.com/) (slightly customized)
- [figcat.com](https://figcat.com/) (heavily customized)
- [stephenanfield.com](https://stephenanfield.com/) (slightly customized)
- [krgr.dev](https://krgr.dev/) (slightly customized)
- [lenesaile.com](https://www.lenesaile.com/) (heavily customized)## Logbook
### 22-12-29
- updated Eleventy
- Major: changed CSS for header, not using the sidebar solution anymore. sidebar.css thus deleted. Now the focus for the logo section doesn't expand all the way to the menu anymore.
- Updated and added some `rel` values after reading Alvaro Montoro's excellent article [A Theory of Web Relativity](https://www.htmhell.dev/adventcalendar/2022/21/).
- stripped "noreferrer" from external links in markdown (editable in `config/plugins/markdown.js`), because I don't mind the target page of carefully placed links to identify the source of the reference.
- added two more pages to the 'built with' section, yay!
- Thought: Now that actually some websites in production are based on this starter, should I create formal release notes?### 22-12-20
- Andy now links to his mastodon profile
- Linked blog posts in readme### 22-12-13
- added JS and CSS as as first-class citizens in Eleventy, out of the npm scripts.
- imported htmlmin transform, css and js processing with `eleventyConfig.addPlugin(require("other-config-file.js"))`, see https://front-end.social/@[email protected]/109501433721579265### 22-12-12
- updated head structure for better performance
- added "built with this" section in readme
- added note for internal links in markdown blog post
- adding page based preload option, making preload of monospaced font in posts default to avoid CLS### 22-11-24
- updated required node version in package.json
- meta.js now controls most of the templates defaults
- added RSS feed, because of course!!
- made twitter and other meta data OPTIONAL
- added Mastodon verification and more social icon defaults
- focus-within for the cards### 22-11-04
- added blog posts for feature explanation
### 22-10-30
- WebC in own branch
- simplify main branch### 22-10-04
- all markdown syntax set
### 22-10-03
- first commit. Updated
## Credits and Thank yous
**Andy Bell**
His CSS methodology "CUBE" makes sense to me. It goes hand in hand with _Every Layout_ (which he co-authors). He has recently published an approach that incorporates Tailwind CSS into his methodology. Also, I learned how to use Eleventy in 2020 with his (now free) course.
- https://buildexcellentwebsit.es/
- https://cube.fyi/
- https://learneleventyfromscratch.com/**Heydon Pickering**
I strongly orientate myself on Heydon's approaches and really love his books.
- https://every-layout.dev/
- https://inclusive-components.design/**Zach Leatherman**
He is developing Eleventy and is constantly making it even better!
- https://www.11ty.dev/
- https://www.zachleat.com/**Stephanie Eckles**
Stephanie provides a lot of resources for Eleventy and modern CSS.
- https://smolcss.dev/
- https://moderncss.dev/**Aleksandr Hovhannisyan**
I love order and structure. Aleksandr does this in an exemplary way, which is why I based the structure of eleventy.js on his personal site. The 301 redirect solution I'm using is from his blog.
- https://github.com/AleksandrHovhannisyan
- https://www.aleksandrhovhannisyan.com/blog/eleventy-netlify-redirects/**Manuel Matuzović**
Manuel is an accessibility expert. The menu I'm using is from one of his articles on web.dev.
- https://web.dev/website-navigation/
- https://www.matuzo.at/