1
0
Fork 0
Find a file
saji 26ddcbfa89
Some checks failed
Build Blog / Build (push) Failing after 5m1s
wip: add markdown-it-figcaption
2025-05-02 21:31:28 -05:00
.forgejo/workflows full urls again 2025-04-21 10:56:40 -05:00
_data improve color scheme system 2025-04-20 13:11:20 -05:00
_includes content, build fixes 2025-04-28 08:14:47 -05:00
content added initial wyse 60 repair 2025-05-02 21:31:07 -05:00
public remove message box 2025-04-24 16:56:31 -05:00
styles/config/vocabularies/Base finalize nix-unprivileged-deployments 2025-04-21 08:42:38 -05:00
.editorconfig full urls again 2025-04-21 10:56:40 -05:00
.gitattributes added fonts 2025-01-01 20:35:57 -06:00
.gitignore fix gitignore paths 2025-04-15 11:52:39 -05:00
.vale.ini add vocab 2025-04-15 12:05:26 -05:00
eleventy.config.drafts.js upgrade to 11ty 3.0 2025-01-01 16:06:57 -06:00
eleventy.config.js add js and html head bundles 2025-04-24 16:56:36 -05:00
flake.lock deploy testing 2025-04-17 12:58:50 -05:00
flake.nix move package to separate file 2025-04-20 09:57:57 -05:00
LICENSE initial commit 2024-07-01 12:43:44 -05:00
markdown-it-figcaption.js wip: add markdown-it-figcaption 2025-05-02 21:31:28 -05:00
markdown-it-revealjs.js fix build 2025-04-12 11:21:02 -05:00
package-lock.json feeds 2025-04-14 23:09:32 -05:00
package.json feeds 2025-04-14 23:09:32 -05:00
package.nix move package to separate file 2025-04-20 09:57:57 -05:00
README.md initial commit 2024-07-01 12:43:44 -05:00

eleventy-base-blog v8

A starter repository showing how to build a blog with the Eleventy site generator (using the v2.0 release).

Getting Started

  1. Make a directory and navigate to it:
mkdir my-blog-name
cd my-blog-name
  1. Clone this Repository
git clone https://github.com/11ty/eleventy-base-blog.git .

Optional: Review eleventy.config.js and _data/metadata.js to configure the sites options and data.

  1. Install dependencies
npm install
  1. Run Eleventy

Generate a production-ready build to the _site folder:

npx @11ty/eleventy

Or build and host on a local development server:

npx @11ty/eleventy --serve

Or you can run debug mode to see all the internals.

Features

Demos

Deploy this to your own site

Deploy this Eleventy site in just a few clicks on these services:

Implementation Notes

  • content/about/index.md is an example of a content page.
  • 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.
  • Use the eleventyNavigation key (via the Eleventy Navigation plugin) 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.
  • 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.
  • 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.
  • Provides two content feeds:
    • content/feed/feed.njk
    • content/feed/json.njk
  • This project uses three Eleventy 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.

Content Security Policy

If your site enforces a Content Security Policy (as public-facing sites should), you have a few choices (pick one):

  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).