From cbad8478f9fb4ec16a1a743e2961b5d715e5a524 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Tue, 24 Jan 2023 11:28:09 -0600 Subject: [PATCH] More copy updates [skip ci] --- README.md | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5676882..29334ee 100644 --- a/README.md +++ b/README.md @@ -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 `` markup if possible (single image format) but switches automatically to `` for multiple image formats. - Automated `` 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 content’s 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