mirror of
https://github.com/arnaucube/blogo.git
synced 2026-02-07 03:46:40 +01:00
3907116171b7605a2d86558334ff4a3dffb0b10b
Blogo
Static blog generator, templating engine from markdown and html templates
Types of blogo tags:
- index.html
[blogo-title]
[blogo-index]
- postTemplate.html
[blogo-post-title]
[blogo-post-md]
Example of config.json:
{
"title": "my blog",
"indexTemplate": "index.html",
"indexPostTemplate": "indexPostTemplate.html",
"postTemplate": "postTemplate.html",
"posts": [
{
"title": "Post 01",
"thumb": "post01thumb.md",
"md": "post01.md"
},
{
"title": "Post 02",
"thumb": "post02thumb.md",
"md": "post02.md"
}
]
}
Example of input files:
- index.html
<!DOCTYPE html>
<html>
<head>
<title>[blogo-title]</title>
</head>
<body>
[blogo-index]
</body>
</html>
- indexPostTemplate.html
<div class="col-md-3">
[blogo-index-post-template]
</div>
- postTemplate.html
<!DOCTYPE html>
<html>
<head>
<title>[blogo-post-title]</title>
</head>
<body>
[blogo-post-content]
</body>
</html>
Languages
Go
96.1%
Shell
3.9%