A simple blog generator for your ~
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
Matt Baer 9cfef9e6dc Fix -o flag description il y a 9 ans
entries Ignore entries il y a 9 ans
html Simple squigglelog generator il y a 9 ans
templates Simple squigglelog generator il y a 9 ans
util Add install and new entry util script il y a 9 ans
.gitignore Ignore generated executables il y a 9 ans
LICENSE Simple squigglelog generator il y a 9 ans
README.md Explain new flags and installation il y a 9 ans
install.sh Add install and new entry util script il y a 9 ans
squigglelog.go Fix -o flag description il y a 9 ans

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.