event-page
v1.3.1
Published
simple static site generator for events
Downloads
3
Readme
Events Page
Static event page generator using handlebar.js
Installation
yarn add event-page
Usage
To build your page, from Command line run:
event-gen
or from node
const event = require('event-page');
event({
title: "Amazing event",
source: "source",
output: {
dir: "public",
css: "main.css",
}
schema: "./schema.json",
menu: [{
title: "Home",
url: ""
}, {
"title": "Speaker List",
"url": "Speakers"
}, {
"title": "Call For Talks",
"url": "CFT"
}],
theme: 'theme',
helper: 'helpers',
templates: 'templates',
css: 'main.scss',
static: [ 'js', 'fonts', 'images'],
});