A simple static website generator. The goal of the project is to create simple website generator. gStatic is powered by Go’s html/template.
- Read all file on the template folder
- Parse a yaml files and replace variables on the template
- Write result to a public folder
- Add support for layouts
- Improve error handling
- Add configuration
- Add documentation on how to do templates
- sourceFolder is the folder that has all the html files.
- targetFolder is the folder where the website will be written.
- Template is an Html file.
- Data-source is a file that variables to be use inside the html files.
gStatic use one convention.
The name of the data-source must match the name of the html file.
Yaml files is the only data-source supported.
Example
Template | Data-source | Result |
---|---|---|
index.html | index.yaml | index.html will be rendered using variables on index.yaml |
aboutus.html | aboutus.yaml | aboutus.html will be rendered using variables on aboutus.yaml |
contactus.html | if no yaml file for contactus | contactus.html will be copied to Target as it is |
See: https://blog.gopheracademy.com/advent-2017/using-go-templates/
and website_example
.
gstatic <sourceFolder> <targetFolder>
Use -h for help
gstatic -h