# Blogo [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucode/blogo)](https://goreportcard.com/report/github.com/arnaucode/blogo) Static blog generator, templating engine from markdown and html templates ## Use Directory structure: ``` / ----blogo ----/blogo-input --------all the html, js, css files and folders ``` To execute: ``` ./blogo ``` Example of blogo.json: ```json { "title": "my blog", "indexTemplate": "index.html", "postThumbTemplate": "postThumbTemplate.html", "posts": [ { "thumb": "post01_thumb.md", "md": "post01.md" }, { "thumb": "post02_thumb.md", "md": "post02.md" } ], "copyRaw": [ "css", "js" ] } ``` Example of input files: - index.html ```html