xmitter-11ty/README.md

118 lines
6.1 KiB
Markdown
Raw Normal View History

2024-01-13 18:32:15 -05:00
# eleventy-base-blog v9
2018-01-16 22:08:47 -05:00
2023-02-24 17:20:11 -05:00
A starter repository showing how to build a blog with the [Eleventy](https://www.11ty.dev/) site generator (using the [v2.0 release](https://www.11ty.dev/blog/eleventy-v2/)).
2018-01-16 22:21:05 -05:00
## Getting Started
2023-04-12 17:48:14 -04:00
* [Want a more generic/detailed getting started guide?](https://www.11ty.dev/docs/getting-started/)
1. Make a directory and navigate to it:
2018-01-16 22:21:05 -05:00
```
2023-04-12 17:48:14 -04:00
mkdir my-blog-name
cd my-blog-name
2018-01-16 22:21:05 -05:00
```
2023-04-12 17:48:14 -04:00
2. Clone this Repository
2018-01-16 22:21:05 -05:00
```
2023-04-12 17:48:14 -04:00
git clone https://github.com/11ty/eleventy-base-blog.git .
2018-01-16 22:21:05 -05:00
```
2023-04-12 17:48:14 -04:00
_Optional:_ Review `eleventy.config.js` and `_data/metadata.js` to configure the sites options and data.
3. Install dependencies
2018-01-16 22:21:05 -05:00
```
npm install
```
2023-04-12 17:48:14 -04:00
4. Run Eleventy
2018-01-16 22:21:05 -05:00
2023-04-12 17:48:14 -04:00
Generate a production-ready build to the `_site` folder:
2023-01-23 15:39:49 -05:00
2018-01-16 22:21:05 -05:00
```
npx @11ty/eleventy
2018-01-16 22:21:05 -05:00
```
2023-04-12 17:48:14 -04:00
Or build and host on a local development server:
```
npx @11ty/eleventy --serve
```
2023-02-24 17:19:27 -05:00
Or you can run [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals.
2018-01-16 22:34:35 -05:00
2023-02-24 17:15:24 -05:00
## Features
- Using [Eleventy v3](https://github.com/11ty/eleventy/releases/tag/v3.0.0) with zero-JavaScript output.
2023-02-24 17:15:24 -05:00
- Content is exclusively pre-rendered (this is a static site).
- Can easily [deploy to a subfolder without changing any content](https://www.11ty.dev/docs/plugins/html-base/)
- All URLs are decoupled from the contents location on the file system.
- Configure templates via the [Eleventy Data Cascade](https://www.11ty.dev/docs/data-cascade/)
- **Performance focused**: four-hundos Lighthouse score out of the box!
- _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 menu](https://www.11ty.dev/docs/plugins/navigation/)
- Fully automated [Image optimization](https://www.11ty.dev/docs/plugins/image/)
2023-02-24 17:15:24 -05:00
- Zero-JavaScript output.
- Support for modern image formats automatically (e.g. AVIF and WebP)
- Processes images on-request during `--serve` for speedy local builds.
2023-02-24 17:15:24 -05:00
- 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.
- Per page CSS bundles [via `eleventy-plugin-bundle`](https://github.com/11ty/eleventy-plugin-bundle).
- Built-in [syntax highlighter](https://www.11ty.dev/docs/plugins/syntaxhighlight/) (zero-JavaScript output).
- Draft content: use `draft: true` to mark any template as a draft. Drafts are **only** included during `--serve`/`--watch` and are excluded from full builds. This is driven by the `addPreprocessor` configuration API in `eleventy.config.js`. Schema validator will show an error if non-boolean value is set in data cascade.
2023-02-24 17:15:24 -05:00
- Blog Posts
- Automated next/previous links
- Accessible deep links to headings
- Generated Pages
- Home, Archive, and About pages.
2024-10-01 16:48:55 -04:00
- [Atom feed included (with easy one-line swap to use RSS or JSON](https://www.11ty.dev/docs/plugins/rss/)
2023-02-24 17:15:24 -05:00
- `sitemap.xml`
- Zero-maintenance tag pages ([View on the Demo](https://eleventy-base-blog.netlify.app/tags/))
- Content not found (404) page
## Demos
2024-07-16 10:40:27 -04:00
- [Netlify](https://eleventy-base-blog.netlify.app/)
- [Vercel](https://demo-base-blog.11ty.dev/)
2023-10-05 09:27:47 -04:00
- [Cloudflare Pages](https://eleventy-base-blog-d2a.pages.dev/)
2024-10-01 17:15:36 -04:00
- [Remix on Glitch](https://glitch.com/~11ty-eleventy-base-blog)
- [GitHub Pages](https://11ty.github.io/eleventy-base-blog/)
2023-02-24 17:15:24 -05:00
## Deploy this to your own site
Deploy this Eleventy site in just a few clicks on these services:
2024-10-01 16:49:23 -04:00
- Read more about [Deploying an Eleventy project](https://www.11ty.dev/docs/deployment/) to the web.
2024-03-07 09:52:42 -05:00
- [Deploy this to **Netlify**](https://app.netlify.com/start/deploy?repository=https://github.com/11ty/eleventy-base-blog)
- [Deploy this to **Vercel**](https://vercel.com/import/project?template=11ty%2Feleventy-base-blog)
- Look in `.github/workflows/gh-pages.yml.sample` for information on Deploying to **GitHub Pages**.
- [Try it out on **Stackblitz**](https://stackblitz.com/github/11ty/eleventy-base-blog)
2023-02-24 17:15:24 -05:00
2018-01-16 22:34:35 -05:00
### Implementation Notes
- `content/about/index.md` is an example of a content page.
2023-03-23 06:47:12 -04:00
- `content/blog/` has the blog posts but really they can live in any directory. They need only the `posts` tag to be included in the blog posts [collection](https://www.11ty.dev/docs/collections/).
- Use the `eleventyNavigation` key (via the [Eleventy Navigation plugin](https://www.11ty.dev/docs/plugins/navigation/)) in your front matter to add a template to the top level site navigation. This is in use on `content/index.njk` and `content/about/index.md`.
2023-01-23 15:39:49 -05:00
- Content can be in _any template format_ (blog posts neednt exclusively be markdown, for example). Configure your projects supported templates in `eleventy.config.js` -> `templateFormats`.
2023-01-23 11:02:06 -05:00
- The `public` folder in your input directory will be copied to the output folder (via `addPassthroughCopy` in the `eleventy.config.js` file). This means `./public/css/*` will live at `./_site/css/*` after your build completes.
2023-01-24 12:31:42 -05:00
- This project uses three [Eleventy Layouts](https://www.11ty.dev/docs/layouts/):
- `_includes/layouts/base.njk`: the top level HTML structure
- `_includes/layouts/home.njk`: the home page template (wrapped into `base.njk`)
- `_includes/layouts/post.njk`: the blog post template (wrapped into `base.njk`)
- `_includes/postslist.njk` is a Nunjucks include and is a reusable component used to display a list of all the posts. `content/index.njk` has an example of how to use it.
2023-10-05 09:32:15 -04:00
#### Content Security Policy
2023-10-05 09:32:54 -04:00
If your site enforces a [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) (as public-facing sites should), you have a few choices (pick one):
2023-10-05 09:32:15 -04:00
1. In `base.njk`, remove `<style>{% getBundle "css" %}</style>` and uncomment `<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">`
2. Configure the server with the CSP directive `style-src: 'unsafe-inline'` (less secure).