All Projects → ixartz → Eleventy Starter Boilerplate

ixartz / Eleventy Starter Boilerplate

Licence: mit
🚀 Eleventy Starter is production-ready with SEO-friendly for quickly starting a blog. ⚡ Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS and Netlify CMS (optional).

Projects that are alternatives of or similar to Eleventy Starter Boilerplate

Next Js Blog Boilerplate
🚀 Nextjs Blog Boilerplate is starter code for your blog based on Next framework. ⚡️ Made with Nextjs, TypeScript, ESLint, Prettier, PostCSS, Tailwind CSS.
Stars: ✭ 134 (-3.6%)
Mutual labels:  netlify, static-site-generator, static-site, starter-kit, jamstack, boilerplate
Skeleventy
A skeleton boilerplate built with Eleventy.
Stars: ✭ 318 (+128.78%)
Mutual labels:  webpack, netlify, static-site-generator, static-site, jamstack
Eleventy Starter Ghost
A starter template to build websites with Ghost & Eleventy
Stars: ✭ 187 (+34.53%)
Mutual labels:  netlify, static-site, jamstack, boilerplate
Bael Template
Brutalist Blog theme for Netlify CMS
Stars: ✭ 187 (+34.53%)
Mutual labels:  netlify, blog, static-site-generator, jamstack
sutanlab.id
☕️ My Personal Homepage & Blog site with NextJS. 🇺🇸 🇮🇩
Stars: ✭ 39 (-71.94%)
Mutual labels:  static-site-generator, blogging, static-site, jamstack
Headlesscms.org
Source for headlesscms.org
Stars: ✭ 628 (+351.8%)
Mutual labels:  netlify, static-site-generator, static-site, jamstack
Peco
nothing here, move on..
Stars: ✭ 213 (+53.24%)
Mutual labels:  webpack, blog, static-site-generator, static-site
Eleventy Netlify Boilerplate
A template for building a simple website with the Eleventy static site generator
Stars: ✭ 359 (+158.27%)
Mutual labels:  netlify, static-site-generator, jamstack, boilerplate
Statiq.web
Statiq Web is a flexible static site generator written in .NET.
Stars: ✭ 1,358 (+876.98%)
Mutual labels:  blog, static-site-generator, blogging, jamstack
Gatsby Starter Alchemy
A Gatsby starter with PostCSS powers ✨🔮
Stars: ✭ 23 (-83.45%)
Mutual labels:  blog, static-site, starter-kit, boilerplate
Static Site Boilerplate
A better workflow for building modern static websites.
Stars: ✭ 1,633 (+1074.82%)
Mutual labels:  webpack, netlify, starter-kit, boilerplate
Webxr Webpack Boilerplate
Starter Kit for building rich, immersive WebXR projects (featuring A-Frame) PWA with Webpack and SASS
Stars: ✭ 48 (-65.47%)
Mutual labels:  webpack, starter-kit, boilerplate
Hugo Boilerplate
A Hugo boilerplate for building modern websites
Stars: ✭ 58 (-58.27%)
Mutual labels:  static-site-generator, static-site, jamstack
Jekyll Netlify Boilerplate
A simple Jekyll template for creating a fast, static website on Netlify
Stars: ✭ 62 (-55.4%)
Mutual labels:  static-site, jamstack, boilerplate
Netlify Cms React Starter
A starter project for creating lightning-fast, offline-first websites with Netlify-CMS and React
Stars: ✭ 78 (-43.88%)
Mutual labels:  netlify, static-site-generator, static-site
Webvr Webpack Boilerplate
A webvr multi-scenes Single-page application for three.js, webpack
Stars: ✭ 47 (-66.19%)
Mutual labels:  webpack, starter-kit, boilerplate
Html5 Boilerplate
A simple, fast, modern, pure html, css (and sass), js, live reload starter template
Stars: ✭ 65 (-53.24%)
Mutual labels:  webpack, starter-kit, boilerplate
Webpack Starter
✨ A lightweight foundation for your next webpack based frontend project.
Stars: ✭ 1,745 (+1155.4%)
Mutual labels:  webpack, starter-kit, boilerplate
Gatsby Theme Try Ghost
A Gatsby theme to build flaring fast blogs from headless Ghost CMS
Stars: ✭ 88 (-36.69%)
Mutual labels:  static-site-generator, static-site, blogging
Gatsby Blog Starter Kit
A simple starter kit for a static blog created with Gatsby
Stars: ✭ 131 (-5.76%)
Mutual labels:  blog, starter-kit, boilerplate

Eleventy Starter Boilerplate

Eleventy starter banner

🚀 Eleventy Starter Boilerplate is production-ready with SEO-friendly for quickly starting a blog. ⚡️ Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS and Netlify CMS (optional).

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

Features

Production-ready in mind:

  • 🔥 11ty for Static Site Generator
  • 🎨 Integrate with Tailwind CSS (with PurgeCSS, remove unused CSS)
  • 💅 PostCSS for processing Tailwind CSS
  • ⚡️ Lazy load images with lazysizes
  • ✨ Compress image with Imagemin
  • 🎈 Syntax Highlighting with Prism.js
  • ☕ Minify HTML & CSS with HTMLMinifier and cssnano
  • ✏️ Linter with ESLint
  • 🛠 Code Formatter with Prettier
  • 💨 Live reload
  • 📦 Module Bundler with Webpack
  • 🦊 Templating with EJS
  • 🤖 SEO metadata and Open Graph tags
  • ⚙️ JSON-LD for richer indexing
  • 🗺 Sitemap.xml
  • ⚠️ 404 page
  • 📖 Pagination
  • ✅ Cache busting
  • 💯 Maximize lighthouse score
  • 🌈 Include a FREE minimalist blog theme
  • 🗒 Netlify CMS (optional)

Philosophy

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

Requirements

  • Node.js and npm

Premium Themes (Eleventy Themes)

Blue Dark Eleventy Theme Blue Eclatant Eleventy Theme
Blue Dark Eleventy Theme premium Blue Eclatant Eleventy Theme premium
Blue Modern Eleventy Theme Blue Minimalist Eleventy Theme
Blue Modern Eleventy Theme premium 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

Remove Netlify files and Netlify CMS

If you don't use Netlify, you can easily remove all Netlify related files:

  • public/admin, the entier folder
  • src/_includes/layouts/base.ejs, the loaded script netlify-identity-widget.js and the inline script if (window.netlifyIdentity) { ...
  • netlify.toml, the entire file

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 CreativeDesignsGuru

Sponsor Next JS Boilerplate

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].