https://github.com/michaelcurrin/eleventy-quickstart
Starter template for a static site built with Eleventy
https://github.com/michaelcurrin/eleventy-quickstart
boilerplate eleventy quickstart static-site static-site-generator template
Last synced: about 1 month ago
JSON representation
Starter template for a static site built with Eleventy
- Host: GitHub
- URL: https://github.com/michaelcurrin/eleventy-quickstart
- Owner: MichaelCurrin
- License: mit
- Created: 2021-09-26T08:26:58.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-26T10:43:29.000Z (almost 5 years ago)
- Last Synced: 2025-03-04T15:47:30.798Z (over 1 year ago)
- Topics: boilerplate, eleventy, quickstart, static-site, static-site-generator, template
- Language: HTML
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Eleventy Quickstart
> Starter template for a static site built with Eleventy
[](https://github.com/MichaelCurrin/eleventy-quickstart/releases/)
[](#license)
[](https://nodejs.org)
[](https://www.npmjs.com/package/@11ty/eleventy)
## Preview
Set up your own project from this template.
[](https://github.com/MichaelCurrin/eleventy-quickstart/generate)
## About
Eleventy is an static site generator built on JavaScript. You can install it from the NPM package registry. It was created as a simpler alternative to Jekyll.
Learn about in my [Eleventy resources](https://michaelcurrin.github.io/dev-resources/resources/javascript/packages/eleventy/).
This template is meant to be light and follow the pattern of a Jekyll project like [jekyll-blog-demo](https://github.com/MichaelCurrin/jekyll-blog-demo) to make it easy to migrate from Jekyll to Eleventy.
The website is really simple. Consider next steps as building out some styling and navigation yourself and installing a theme and plugins.
## Requirements
- Node.js
## Installation
Install [Node.js](https://nodejs.org/).
Clone the repo.
Install project packages.
```sh
$ npm install
```
## Usage
### Server
Start the dev server.
```sh
$ npm start
```
Then open the browser at:
- http://localhost:8080
### Build
Build for a deploy.
```sh
$ npm run build
```
### Deploy
To deploy this site with GitHub Pages and GitHub Actions, see [Workflow Builder](https://michaelcurrin.github.io/workflow-builder/).
## License
Released under [MIT](/LICENSE) by [@MichaelCurrin](https://github.com/MichaelCurrin).