A simple blog generator for your ~
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Matt Baer 9cfef9e6dc Fix -o flag description 9年前
entries Ignore entries 9年前
html Simple squigglelog generator 9年前
templates Simple squigglelog generator 9年前
util Add install and new entry util script 9年前
.gitignore Ignore generated executables 9年前
LICENSE Simple squigglelog generator 9年前
README.md Explain new flags and installation 9年前
install.sh Add install and new entry util script 9年前
squigglelog.go Fix -o flag description 9年前

README.md

~log

Use squigglelog to easily create a simple log for your tilde.

  1. Install squigglelog with ./install.sh
  2. Create new posts in the entries/ folder, or use the squiggle.sh utility.
  3. Generate your ~log:
./squigglelog -t mysquigglelog -o mylog

This will use any template in templates/ defined with mysquigglelog (see below) to generate your full squigglelog page in ~/public_html/ called mylog.html.

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

There are two important lines in this file

{{define "mysquigglelog"}}

This is what you will reference in the -t flag passed to the generator. The template file name does not matter.

{{template "log" .}}

This must be included verbatim in your template. It will include the templates/log.html template, which holds all the posts.