mirror of
https://github.com/thebaer/squigglelog
synced 2018-07-20 10:45:21 +00:00
A simple blog generator for your ~
entries | ||
html | ||
templates | ||
util | ||
install.sh | ||
LICENSE | ||
README.md | ||
squigglelog.go |
~log
Use squigglelog to easily create a simple log for your tilde. Create new posts in the entries/
folder, then run this:
go build squigglelog.go
./squigglelog -template mysquigglelog
This will use any template in templates/
defined with mysquigglelog (see below) to generate your full squigglelog page.
templates
Your template should look like this.
{{define "mysquigglelog"}}
<html>
<head>
<title>My ~log!</title>
</head>
<body>
<h1>~log</h1>
<p>Welcome to my ~log.</p>
{{template "log" .}}
</body>
</html>
{{end}}