{"id":15544594,"url":"https://github.com/davbree/super-bee-copy-01","last_synced_at":"2026-05-04T08:31:15.121Z","repository":{"id":140317868,"uuid":"321926591","full_name":"davbree/super-bee-copy-01","owner":"davbree","description":"Jamstack site created with Stackbit","archived":false,"fork":false,"pushed_at":"2020-12-16T09:06:26.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-08T08:57:14.288Z","etag":null,"topics":["eleventy","git","headless","jamstack","ssg","stackbit","static"],"latest_commit_sha":null,"homepage":"https://jamstack.new","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/davbree.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-12-16T09:05:15.000Z","updated_at":"2020-12-16T09:05:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc5508ef-0255-4750-85cf-e31101f2a17e","html_url":"https://github.com/davbree/super-bee-copy-01","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/davbree/super-bee-copy-01","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davbree%2Fsuper-bee-copy-01","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davbree%2Fsuper-bee-copy-01/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davbree%2Fsuper-bee-copy-01/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davbree%2Fsuper-bee-copy-01/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davbree","download_url":"https://codeload.github.com/davbree/super-bee-copy-01/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davbree%2Fsuper-bee-copy-01/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32600944,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["eleventy","git","headless","jamstack","ssg","stackbit","static"],"created_at":"2024-10-02T12:38:10.451Z","updated_at":"2026-05-04T08:31:15.108Z","avatar_url":"https://github.com/davbree.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%2Fdavbree%2Fsuper-bee-copy-01","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavbree%2Fsuper-bee-copy-01","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavbree%2Fsuper-bee-copy-01/lists"}