The source for the site at www.nthall.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Noah Hall ffedcf8836 remove header text and relocate site nav for better a11y 2 years ago
.github Create FUNDING.yml 3 years ago
_11ty Using deep data merge (post tag is inherited from posts/posts.json) and updates to use 0.7.0. 4 years ago
_data initial commit for my site 2 years ago
_includes remove header text and relocate site nav for better a11y 2 years ago
css small step towards better code rendering and such 2 years ago
feed Builds feed URL from site URL to reduce replication 3 years ago
img 2 new posts, accompanying images, and tweaks to the carousel 2 years ago
pages lots of things but i just finished making the carousel mostly work lol 2 years ago
photos refinements to page metadata for sharing to facebook 2 years ago
posts small edits to goatcounter post 2 years ago
scss remove header text and relocate site nav for better a11y 2 years ago
static frontend changes related to goatcounter 2 years ago
templates lots of things but i just finished making the carousel mostly work lol 2 years ago
work lots of things but i just finished making the carousel mostly work lol 2 years ago
.editorconfig Adds editorconfig for my own sanity. 5 years ago
.eleventy.js lots of things but i just finished making the carousel mostly work lol 2 years ago
.eleventyignore lots of things but i just finished making the carousel mostly work lol 2 years ago
.gitignore lots of things but i just finished making the carousel mostly work lol 2 years ago
.nvmrc Bump nvmrc to 10 for netlify 3 years ago
.travis.yml Change default config to use pathPrefix: "/" and then use `--pathprefix="/eleventy-base-blog/` for GitHub deploy command. Requires Eleventy v0.2.11 5 years ago
404.md Update TLD 2 years ago
LICENSE Updated license name 5 years ago
README.md Name update post rebranding 3 years ago
TODO.md update TODO list and tweak header style a bit 2 years ago
about.md frontend changes related to goatcounter 2 years ago
gulpfile.js 2 new posts, accompanying images, and tweaks to the carousel 2 years ago
index.md lots of things but i just finished making the carousel mostly work lol 2 years ago
license.txt lots of things but i just finished making the carousel mostly work lol 2 years ago
netlify.toml Switch to debug for netlify deploy 5 years ago
package.json lots of things but i just finished making the carousel mostly work lol 2 years ago
wishlist.md add to wishlist 2 years ago

README.md

eleventy-base-blog

A starter repository showing how to build a blog with the Eleventy static site generator.

Build Status

Demos

Deploy this to your own site

These builders are amazing—try them out to get your own Eleventy site in a few clicks!

Getting Started

1. Clone this Repository

git clone https://github.com/11ty/eleventy-base-blog.git my-blog-name

2. Navigate to the directory

cd my-blog-name

Specifically have a look at .eleventy.js to see if you want to configure any Eleventy options differently.

3. Install dependencies

npm install

4. Edit _data/metadata.json

5. Run Eleventy

npx eleventy

Or build and host locally for local development

npx eleventy --serve

Or build automatically when a template changes:

npx eleventy --watch

Or in debug mode:

DEBUG=* npx eleventy

Implementation Notes

  • about/index.md shows how to add a content page.
  • posts/ has the blog posts but really they can live in any directory. They need only the post tag to be added to this collection.
  • Add the nav tag to add a template to the top level site navigation. For example, this is in use on index.njk and about/index.md.
  • Content can be any template format (blog posts needn’t be markdown, for example). Configure your supported templates in .eleventy.js -> templateFormats.
    • Because css and png are listed in templateFormats but are not supported template types, any files with these extensions will be copied without modification to the output (while keeping the same directory structure).
  • The blog post feed template is in feed/feed.njk. This is also a good example of using a global data files in that it uses _data/metadata.json.
  • This example uses three 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/postlist.njk is a Nunjucks include and is a reusable component used to display a list of all the posts. index.njk has an example of how to use it.