More copy updates [skip ci]

This commit is contained in:
Zach Leatherman 2023-01-24 11:28:09 -06:00
parent eff56e0c5f
commit cbad8478f9

View File

@ -13,28 +13,31 @@ A starter repository showing how to build a blog with the [Eleventy](https://www
- _0 Cumulative Layout Shift_
- _0ms Total Blocking Time_
- Local development live reload provided by [Eleventy Dev Server](https://www.11ty.dev/docs/dev-server/).
- Content-driven [navigation](https://www.11ty.dev/docs/plugins/navigation/) menu
- [Image optimization](https://www.11ty.dev/docs/plugins/image/) (zero-JavaScript output, includes modern formats: AVIF and WebP) via the `{% image %}` shortcode.
- Images can be co-located with posts.
- Content-driven [navigation menu](https://www.11ty.dev/docs/plugins/navigation/)
- [Image optimization](https://www.11ty.dev/docs/plugins/image/) via the `{% image %}` shortcode.
- Zero-JavaScript output.
- Support for modern image formats automatically (e.g. AVIF and WebP)
- Prefers `<img>` markup if possible (single image format) but switches automatically to `<picture>` for multiple image formats.
- Automated `<picture>` syntax markup with `srcset` and optional `sizes`
- Includes `width`/`height` attributes to avoid [content layout shift](https://web.dev/cls/).
- Includes `loading="lazy"` for native lazy loading without JavaScript.
- Includes [`decoding="async"`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/decoding)
- Images can be co-located with blog post files.
- View the [Image plugin source code](https://github.com/11ty/eleventy-base-blog/blob/main/eleventy.config.images.js)
- Built-in [syntax highlighter](https://www.11ty.dev/docs/plugins/syntaxhighlight/) (zero-JavaScript output).
- Blog post features
- Blog Posts
- Draft posts: use `draft: true` to mark a blog post as a draft. Drafts are **only** included during `--serve`/`--watch` and are excluded from full builds. View the [Drafts plugin source code](https://github.com/11ty/eleventy-base-blog/blob/main/eleventy.config.drafts.js).
- Automated next/previous links on blog posts.
- Automated next/previous links
- Accessible deep links to headings
- Generated Pages
- Home, Archive, and About pages.
- [Feeds for Atom and JSON](https://www.11ty.dev/docs/plugins/rss/)
- `sitemap.xml`
- Tag pages ([demo](https://eleventy-base-blog.netlify.app/tags/))
- Content not found (404) page
- Easily [deploy to a subfolder without changing any content](https://www.11ty.dev/docs/plugins/html-base/)
- Easily configure templates via the [Eleventy Data Cascade](https://www.11ty.dev/docs/data-cascade/)
- Output URLs are independent of contents location on the file system.
- Generated:
1. [feeds for Atom and JSON](https://www.11ty.dev/docs/plugins/rss/)
1. `sitemap.xml`
1. Tag pages ([demo](https://eleventy-base-blog.netlify.app/tags/))
1. Content not found (404) page
## Demos