No description
Find a file
2020-08-03 20:54:49 +02:00
public Initial commit 2020-06-20 20:16:50 +02:00
src Initial commit 2020-06-20 20:16:50 +02:00
.eleventy.js Initial commit 2020-06-20 20:16:50 +02:00
.eslintignore Initial commit 2020-06-20 20:16:50 +02:00
.eslintrc Initial commit 2020-06-20 20:16:50 +02:00
.gitignore Initial commit 2020-06-20 20:16:50 +02:00
.prettierignore Initial commit 2020-06-20 20:16:50 +02:00
.prettierrc Initial commit 2020-06-20 20:16:50 +02:00
LICENSE Initial commit 2020-06-20 20:16:50 +02:00
netlify.toml Add netlify configuration file 2020-06-22 13:25:26 +02:00
package-lock.json Initial commit 2020-06-20 20:16:50 +02:00
package.json Initial commit 2020-06-20 20:16:50 +02:00
postcss.config.js Initial commit 2020-06-20 20:16:50 +02:00
README.md Remove hypens line in table when it is not needed 2020-08-03 20:54:49 +02:00
tailwind.config.js Initial commit 2020-06-20 20:16:50 +02:00
webpack.config.js Initial commit 2020-06-20 20:16:50 +02:00
webpack.html Initial commit 2020-06-20 20:16:50 +02:00

Eleventy Starter Boilerplate

🚀 Eleventy Starter Boilerplate is production-ready with SEO-friendly for quickly starting a blog. Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS.

Clone this project and use it to create your own Eleventy blog. You can check a Eleventy templates demo.

Features

Production-ready in mind:

Philosophy

  • Minimal code (HTML, CSS & JS). Add what you need
  • SEO-friendly
  • 🚀 Production-ready

Requirements

  • Node.js and npm

Premium Themes

Blue Dark Eleventy Theme Blue Eclatant Eleventy Theme Blue Modern Eleventy Theme
Blue Dark Eleventy Theme premium Blue Eclatant Eleventy Theme premium Blue Modern Eleventy Theme premium
Blue Minimalist Eleventy Theme
Blue Minimalist Eleventy Theme premium

Getting started

Run the following command on your local environment:

git clone --depth=1 https://github.com/ixartz/Eleventy-Starter-Boilerplate.git my-project-name
cd my-project-name
npm install

Then, you can run locally in development mode with live reload:

npm run dev

Open http://localhost:8080 with your favorite browser to see your blog.

Project structure

.
├── public             # Static files
│   └── assets
│       └── images     # Images not needed by Webpack
└── src
    ├── _data          # Eleventy data folder
    ├── _includes
    │   └── layouts    # HTML layout files
    ├── assets         # Assets folder that needs to be processed by Webpack
    │   ├── images
    │   │   └── posts  # Images used in your blog posts (will be compressed by Webpack)
    │   └── styles     # Your blog CSS files
    └── posts          # Your blog posts

Customization

You can easily configure Eleventy Starter Boilerplate. Please change the following file:

  • public/assets/images/logo.png: your blog logo
  • public/apple-touch-icon.png, public/favicon.ico, public/favicon-16x16.png and public/favicon-32x32.png: your blog favicon, you can generate from https://favicon.io/favicon-converter/
  • src/_data/site.json: your blog configuration
  • src/_includes/layouts: your blog HTML layout
  • src/assets/styles/main.css: your blog CSS file using Tailwind CSS

Deploy to production

You can see the results locally in production mode with:

npm run serve

The generated HTML and CSS files are minified. It will also removed unused CSS from Tailwind CSS.

You can create an optimized production build with:

npm run build

Now, your blog is ready to be deployed. All generated files are located at _site folder, which you can deploy with any hosting service.

Deploy to Netlify

Clone this repository on own GitHub account and deploy to Netlify:

Netlify Deploy button

Contributions

Everyone is welcome to contribute to this project. Feel free to open an issue if you have question or found a bug.

License

Licensed under the MIT License, Copyright © 2020

See LICENSE for more information.


Made with ♥ by Ixartz