A simple blog generator for your ~
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
Matt Baer 543eb0203c Add install and new entry util script há 9 anos
entries Simple squigglelog generator há 9 anos
html Simple squigglelog generator há 9 anos
templates Simple squigglelog generator há 9 anos
util Add install and new entry util script há 9 anos
LICENSE Simple squigglelog generator há 9 anos
README.md Simple squigglelog generator há 9 anos
install.sh Add install and new entry util script há 9 anos
squigglelog.go Remove unfinished configuration initialization há 9 anos

README.md

~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}}