{"id":23143491,"url":"https://github.com/digitalinteraction/eleventy-alembic-starter","last_synced_at":"2026-01-26T01:32:25.423Z","repository":{"id":235829763,"uuid":"790220257","full_name":"digitalinteraction/eleventy-alembic-starter","owner":"digitalinteraction","description":"A template project to quickly build an Eleventy project using Alembic","archived":false,"fork":false,"pushed_at":"2024-11-08T14:25:51.000Z","size":508,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-17T14:43:46.468Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://eleventy-alembic-starter.openlab.dev","language":"Nunjucks","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/digitalinteraction.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2024-04-22T13:37:18.000Z","updated_at":"2024-11-08T14:26:20.000Z","dependencies_parsed_at":"2024-04-24T17:46:22.265Z","dependency_job_id":"b41ef3a2-46be-4093-91ea-27cc5f803ed0","html_url":"https://github.com/digitalinteraction/eleventy-alembic-starter","commit_stats":null,"previous_names":["digitalinteraction/eleventy-alembic-starter"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/digitalinteraction/eleventy-alembic-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalinteraction%2Feleventy-alembic-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalinteraction%2Feleventy-alembic-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalinteraction%2Feleventy-alembic-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalinteraction%2Feleventy-alembic-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/digitalinteraction","download_url":"https://codeload.github.com/digitalinteraction/eleventy-alembic-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/digitalinteraction%2Feleventy-alembic-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28763934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T00:37:26.264Z","status":"ssl_error","status_checked_at":"2026-01-26T00:37:25.959Z","response_time":113,"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-17T15:13:33.719Z","updated_at":"2026-01-26T01:32:25.406Z","avatar_url":"https://github.com/digitalinteraction.png","language":"Nunjucks","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\npermalink: /template/\nlayout: page.njk\n---\n\n# Eleventy Alembic Starter\n\nThis repo is a started project to quickly get an [Eleventy](https://11ty.dev) project set up with [Alembic](https://alembic.openlab.dev).\nEleventy is a great static site builder for Node.js.\nAlembic is a design toolkit for [Open Lab](https://openlab.ncl.ac.uk) to build modern responsive websites.\n\n## Features\n\n- A basic home page with a hero at the top of it\n- An extra page re-using the same HTML template\n- Primary \u0026 secondary navigation from a data file\n- Integrated with [Open Lab Alembic](https://alembic.openlab.dev) (with labcoat)\n- Configured markdown for a more pleasant experience\n- Static assets that are copied into the site\n- An example GitHub CI/CD to build \u0026 deploy the site\n- Optional formatting with [prettier](https://prettier.io)\n- Pulls in a font from [fonts.openlab.dev](https://fonts.openlab.dev)\n\n## Project structure\n\n```\n.\n├── .github\n│   └── workflows\n|       └── pages.yml   - A GitHub actions workflow that builds \u0026 deploys the site to GitHub pages\n│\n├── _data               - Contains global data used throughout the website\n│   ├── navigation.json - The primary and secondary (footer) links\n│   └── site.json       - Meta-information about the site\n│\n├── _includes           - Templates to use for rendering\n│   ├── home.njk        - A layout for the homepage with a hero and content\n│   ├── html.njk        - A generic layout for HTML pages\n│   └── page.njk        - A layout that you can apply to a markdown file\n│\n├── assets              - A folder of static assets that are copied in\n│   ├── hero.jpg        - The hero image on the home page\n│   └── style.css       - Rough CSS styles to get you started\n│\n├── node_modules        - Node.js modules, installed with npm\n├── _site_              - Where the site is built into\n│\n├── .gitignore          - Files to ignore from git source control\n├── README.md           - The file you're reading right now\n├── eleventy.config.js  - The Eleventy configuration\n├── index.md            - The home page markdown source\n├── package-lock.json   - Node.js lock file\n└── package.json        - Node.js package info \u0026 dependencies\n```\n\n## Get started\n\nUse the template on [GitHub](https://github.com/digitalinteraction/eleventy-alembic-starter) to start hacking away.\nFirst, clone your new repository locally and install the NPM dependencies.\nThen you can run the `start` and `build` scripts to start editing the webiste.\n\n```sh\n# cd to/this/folder\n\nnpm install\n\n# Run the development script\n# -\u003e Runs a local web server on http://localhost:8080\n# -\u003e Hot-reloads on changes\n# -\u003e Stop with ^C (control-then-C)\nnpm run start\n\n# Run the production build\n# -\u003e Builds into the _site directory\nnpm run build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalinteraction%2Feleventy-alembic-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigitalinteraction%2Feleventy-alembic-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitalinteraction%2Feleventy-alembic-starter/lists"}