All Projects → ducksoupdev → Gulp Site Generator

ducksoupdev / Gulp Site Generator

A static site generator using Gulp

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Site Generator

Gulp Hb
A sane Gulp plugin to compile Handlebars templates. Useful as a static site generator.
Stars: ✭ 145 (-20.77%)
Mutual labels:  gulp, static-site-generator, handlebars
generator-veams
Scaffold modern frontend web apps or web pages with a static site generator (Assemble or Mangony), Grunt and/or Gulp, Sass and Bower. Use modern frameworks like Bourbon, Bootstrap or Foundation and structure your JavaScript with ES Harmony support.
Stars: ✭ 45 (-75.41%)
Mutual labels:  gulp, static-site-generator
bymattlee-11ty-starter
A starter boilerplate powered by 11ty, Sanity, Gulp, Tailwind CSS, rollup.js, Alpine.js and Highway.
Stars: ✭ 27 (-85.25%)
Mutual labels:  gulp, static-site-generator
stacy
Website generator that combines content from Contentful CMS with Handlebars templates and publishes the website in Amazon S3.
Stars: ✭ 24 (-86.89%)
Mutual labels:  static-site-generator, handlebars
startover
Startover is a boilerplate for developing static websites. With Startover you don't have to start over!
Stars: ✭ 15 (-91.8%)
Mutual labels:  gulp, handlebars
Baumeister
👷 The aim of this project is to help you to build your things. From Bootstrap themes over static websites to single page applications.
Stars: ✭ 171 (-6.56%)
Mutual labels:  static-site-generator, handlebars
bootstrap-gulp-starter-template
Bootstrap 4 + Gulp 4 + Panini for improve front-end development workflow
Stars: ✭ 67 (-63.39%)
Mutual labels:  gulp, handlebars
lnv-mobile-base
移动端开发脚手架-基于gulp的使用zepto、handlebars、sass并且带移动端适配方案(flexible.js)的前端工作流,旨在帮助移动端项目的开发
Stars: ✭ 41 (-77.6%)
Mutual labels:  gulp, handlebars
Publii
Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners.
Stars: ✭ 3,644 (+1891.26%)
Mutual labels:  static-site-generator, handlebars
Assemble
Community
Stars: ✭ 3,995 (+2083.06%)
Mutual labels:  gulp, static-site-generator
Panini
A super simple flat file generator.
Stars: ✭ 562 (+207.1%)
Mutual labels:  gulp, handlebars
Gulp Webpack Starter
Gulp Webpack Starter - fast static website builder. The starter uses gulp toolkit and webpack bundler. Download to get an awesome development experience!
Stars: ✭ 199 (+8.74%)
Mutual labels:  gulp, static-site-generator
hugo-gulp-template
Enhanced template for Hugo projects
Stars: ✭ 28 (-84.7%)
Mutual labels:  gulp, static-site-generator
gulp-markdown-to-json
Parse Markdown and YAML → compile Markdown to HTML → wrap it all up in JSON
Stars: ✭ 76 (-58.47%)
Mutual labels:  gulp, static-site-generator
Gopablo
🐺 Static site generator.
Stars: ✭ 166 (-9.29%)
Mutual labels:  gulp, static-site-generator
Hugo theme pickles
Modern, Simple and beautiful Hugo theme
Stars: ✭ 168 (-8.2%)
Mutual labels:  gulp, static-site-generator
Ramhorns
Fast Mustache template engine implementation in pure Rust.
Stars: ✭ 172 (-6.01%)
Mutual labels:  handlebars
Saber
()==[:::::::::::::> Build static sites in Vue.js, without the hassle
Stars: ✭ 2,133 (+1065.57%)
Mutual labels:  static-site-generator
Pygreen
A micro web framework/static web site generator.
Stars: ✭ 171 (-6.56%)
Mutual labels:  static-site-generator
Jekyll Starter Tailwind
Jekyll starter styled with Tailwind CSS
Stars: ✭ 180 (-1.64%)
Mutual labels:  gulp

Static site generator using Gulp

Build Status Coverage Status

This is a simple static site generator which is perfect for a personal, blog or documentation site.

It is similar to other static site generators in that it takes your Markdown content, renders it, optimises it and creates a production-ready site that can be served by Nginx, Apache or another web server.

Features

  • Convert Markdown files to static HTML
  • Handlebars templates and partials
  • Sass compiling and minification
  • Css reducing (Uncss)
  • Javascript concatenating and minification
  • Asset copying
  • Image compression
  • HTML compression
  • RSS feed creation
  • Server for viewing built site
  • Clobber for cleaning build directory
  • Save content as draft
  • Convert draft templates
  • Creates a build/ directory with built content and assets

Installation

This project is ideal when used as a Git sub-module or installed along-side your site so you can update it when new releases are made.

Getting the generator

Git sub-module

$ mkdir my-static-site
$ cd my-static-site
$ git init
$ git submodule add https://github.com/ducksoupdev/gulp-site-generator.git tools

Straightforward checkout

$ mkdir my-static-site
$ cd my-static-site
$ git clone https://github.com/ducksoupdev/gulp-site-generator.git tools

Installing the dependencies

The generator requires Gulp to be installed globally. If you don't have it you can install it using:

$ npm install -g gulp

The generator has some dependencies that need to be installed using the following script:

$ node tools/install

The script creates the following files in the root of your site:

  • package.json - the node modules required by the generator
  • gulpfile.js - the gulp file for all the generator tasks
  • site.json - the metadata for your site
  • src/content - the content folder for the markdown files including some sample ones
  • src/images - a sample image
  • src/sass - a sample sass file
  • src/templates - a set of Handlebar templates for creating pages and posts

Once created, the next thing is to install the required node modules:

$ npm install

Finally, you can run the generator to create the sample site:

$ gulp

The generator will create a build/ folder with the compiled and optimised site ready to be deployed to your web server.

So putting it all together, the installation steps are:

$ mkdir my-static-site
$ cd my-static-site
$ git init
$ git submodule add https://github.com/ducksoupdev/gulp-site-generator.git tools
$ npm install -g gulp
$ node tools/install
$ npm install
$ gulp

Updating

Updating the generator submodule to the latest version can be done using git:

$ cd tools
$ git remote update
$ git pull
$ cd ..

The generator has an update script that can then be run:

$ node tools/update

The script updates the package.json in the root of your site and updates any dependencies to the latest versions.

Tasks

When you have created templates, content and assets, the default task will run the generator:

$ gulp

The following tasks can also be run individually:

  • develop - a live-reload task for developing your site where changes are reloaded automatically including draft posts and pages - view at http://localhost:8080
  • sass - converts sass files to css
  • clobber - removes the build/ directory
  • server - view your built site locally at http://localhost:8080
  • help - lists available tasks

Configuration

The metadata file site.json contains all configuration required by your site. The following properties are used by the generator. You are free to add properties to this file for use in your Handlebars templates.

  • title (string) (required) - the title of your site
  • description (string) (required) - a description of your site
  • url (string) (required) - the URL of your site
  • rss (string) (required) - the RSS feed XML file
  • maxItems (number) (optional) - the number to use for pagination
  • authors (object) (optional) - an map of authors with metadata
  • concatJs (array) (optional) - a list of javascript files to combine and minify
  • styleSheet (string) (optional) - the name of your main CSS file created by the sass task
  • imageCompression (boolean) (optional) - a boolean value to enable/disable image compresssion on build
  • uncssIgnore (array) (optional) - a list of selectors that uncss should ignore (for example ".container" or "#my-element")

Content

Content must be added to the src/content directory.

Pages and posts

Pages and posts must created in the src/content/pages and src/content/posts directories.

Pages and posts are Markdown files with a YAML front-matter block. The front matter must be the first thing in the file and must take the form of valid YAML set between triple-dashed lines. Here is a basic example:

---
title: Home
template: index.hbs
---

The rest of the template goes here as markdown text.

Between these triple-dashed lines, you can set predefined variables (see below). These variables will then be available to you in any Handlebars templates or includes that the page or post in question relies on.

  • title (required) - the title of the page or post
  • template (required) - the Handlebars template to use to compile the page or post
  • slug (optional) - the URL slug which is used as the directory name when the page or post is built
  • date (optional) - used for posts and in the format YYYY-MM-DD
  • author (optional) - used for posts and the author key in the site.json file
  • status (optional) - set to 'draft' to ignore the page or post when running the generator

Assets

Images, javascripts, fonts etc can all be added to the src/ directory. You are free to create directories for these and name them accordingly.

Content is created in the src/content/pages or src/content/posts.

The generator is opinionated in that it expects certain files in particular directories. To help with this, an example site is available that shows you how to structure your site with the generator.

Templates

Handlebars is used for rendering templates. Partials located in src/templates/partials are automatically available to your Handlebar templates.

Helpers are available to your Handlebar templates and partials, these are:

  • date - format a date in a particular format (uses Moment)

    {{date format="MMM Do, YYYY"}}

  • excerpt - returns an excerpt of the text of your content, use 'words' or 'characters' to set the length

    {{excerpt words="50"}}

  • content - returns an excerpt of content and is tag aware, use 'words' or 'characters' to set the length

    {{content words="50"}}

  • resolve - resolves the path to an asset relative to the site root

    {{resolve "/favicon.ico"}}

Further information

The example site is a good place to start and shows a basic structure of a site with templates and content.

If you encounter any issues or have any feedback, please send me a tweet or raise a bug on the issue tracker.

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].