Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

viur-ignite-html

viur-ignite27GPL-3.01.0.9

Simple Template Render | Extension of viur-ignite-css

VIUR Ignite, viur, ignite, html, template engine, gulp,

readme

npm version Dependency Status Build Status GitHub license

VIUR Ignite HTML

The ViUR Ignite Framework is the first attempt in building a sturdy foundation for ViUR products and Mausbrand projects.

VIUR Ignite HTML is designed to build small websites with an simple template

For a detailed introduction and examples have a look at http://ignite.viur.is.

Install

$ npm install viur-ignite-html

Usage

const gulp = require('gulp');
const html = require('viur-ignite-html');

gulp.task('default', function() {
  return html.build();
});

Create your html template in _layout.html, add content files in your sources folder and add them to the _menu.json and build them with

$ gulp

Be individual

Call the function with an object of options

gulp.task('default', function() {
  return html.build({
    dest: './output/html/'
  });
});

The Default options are:

src: './sources/html/',
dest: './appengine/html/'

Contribution guidelines

  • Available for use under the GPL-3.0 license

Who do I talk to?

changelog

Change Log

All notable changes to this project will be documented in this file.

Unreleased

nothing since last realease

1.0.8 - 2016-08-05

Fixed

  • no space between class and href attribute

1.0.8 - 2016-08-05

Added

  • CHANGELOG.md
  • travis.yml
  • .editorconfig
  • error handler if a file doesn't exist

Fixed

  • now replace all variables in template, not only the first one

1.0.7 - 2016-07-24

  • Changelog started here