{"id":23076628,"url":"https://github.com/corbaz/eleventy-base-blog","last_synced_at":"2026-02-08T08:31:52.841Z","repository":{"id":125339191,"uuid":"306873761","full_name":"corbaz/eleventy-base-blog","owner":"corbaz","description":null,"archived":false,"fork":false,"pushed_at":"2020-10-24T11:59:52.000Z","size":161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-16T17:42:27.135Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/corbaz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"open_collective":"11ty"}},"created_at":"2020-10-24T11:59:07.000Z","updated_at":"2020-10-24T12:00:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"dbd66812-2744-4a42-ae81-74fb27148324","html_url":"https://github.com/corbaz/eleventy-base-blog","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/corbaz/eleventy-base-blog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2Feleventy-base-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2Feleventy-base-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2Feleventy-base-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2Feleventy-base-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/corbaz","download_url":"https://codeload.github.com/corbaz/eleventy-base-blog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/corbaz%2Feleventy-base-blog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29225477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T06:05:31.539Z","status":"ssl_error","status_checked_at":"2026-02-08T05:58:33.853Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-16T09:41:59.836Z","updated_at":"2026-02-08T08:31:52.827Z","avatar_url":"https://github.com/corbaz.png","language":"HTML","funding_links":["https://opencollective.com/11ty"],"categories":[],"sub_categories":[],"readme":"# eleventy-base-blog\n\nA starter repository showing how to build a blog with the [Eleventy](https://github.com/11ty/eleventy) static site generator.\n\n[![Build Status](https://travis-ci.org/11ty/eleventy-base-blog.svg?branch=master)](https://travis-ci.org/11ty/eleventy-base-blog)\n\n## Demos\n\n* [Netlify](https://eleventy-base-blog.netlify.com/)\n* [GitHub Pages](https://11ty.github.io/eleventy-base-blog/)\n* [Remix on Glitch](https://glitch.com/~11ty-eleventy-base-blog)\n\n## Deploy this to your own site\n\nThese builders are amazing—try them out to get your own Eleventy site in a few clicks!\n\n* [Get your own Eleventy web site on Netlify](https://app.netlify.com/start/deploy?repository=https://github.com/11ty/eleventy-base-blog)\n* [Get your own Eleventy web site on Vercel](https://vercel.com/import/project?template=11ty%2Feleventy-base-blog)\n\n## Getting Started\n\n### 1. Clone this Repository\n\n```\ngit clone https://github.com/11ty/eleventy-base-blog.git my-blog-name\n```\n\n\n### 2. Navigate to the directory\n\n```\ncd my-blog-name\n```\n\nSpecifically have a look at `.eleventy.js` to see if you want to configure any Eleventy options differently.\n\n### 3. Install dependencies\n\n```\nnpm install\n```\n\n### 4. Edit _data/metadata.json\n\n### 5. Run Eleventy\n\n```\nnpx eleventy\n```\n\nOr build and host locally for local development\n```\nnpx eleventy --serve\n```\n\nOr build automatically when a template changes:\n```\nnpx eleventy --watch\n```\n\nOr in debug mode:\n```\nDEBUG=* npx eleventy\n```\n\n### Implementation Notes\n\n* `about/index.md` shows how to add a content page.\n* `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.\n* 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`.\n* Content can be any template format (blog posts needn’t be markdown, for example). Configure your supported templates in `.eleventy.js` -\u003e `templateFormats`.\n\t* 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).\n* 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`.\n* This example uses three layouts:\n  * `_includes/layouts/base.njk`: the top level HTML structure\n  * `_includes/layouts/home.njk`: the home page template (wrapped into `base.njk`)\n  * `_includes/layouts/post.njk`: the blog post template (wrapped into `base.njk`)\n* `_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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorbaz%2Feleventy-base-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorbaz%2Feleventy-base-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorbaz%2Feleventy-base-blog/lists"}