@@ 15,30 15,35 @@ const (
<body>
{{block "body" .}}{{end}}
<footer>
-<p>Get the latest updates: <a href='feed.atom'>Atom Feed</a></p>
+<p>
+Do you have something to say about post? A comment, a question, or a correction?<br>
+My Email is <a href='mailto:henry@precheur.org'>
+Henry Prêcheur <henry@precheur.org></a>
+Iām happy to communicate, exchange ideas, and make corrections.
+</p>
<p>
Like this blog? Check out my <a href='http://henry.precheur.org'>other blog</a>
for more long-form articles.
</p>
-<p>
-Have something to say about what you read?<br>
-My Email is <a href='mailto:henry@precheur.org'>
-Henry Prêcheur <henry@precheur.org></a>
-</p>
+
+<p>Get the latest updates: <a href='feed.atom'>Atom Feed</a></p>
</footer>
</html>{{end}}`
+
index = `{{define "body"}}<header>Spreading my ignorange</header>{{ range . }}
<article id='{{ .Id }}'>
<time datetime='{{ .Timestamp }}' pubdate><a href='{{ urlquery .Id }}'>{{ .Timestamp }}</a></time>
{{.Body}}
</article>{{end}}{{end}}{{template "page" .}}`
+
post = `{{define "body"}}
<article id='{{ .Id }}'>
-<div><a href='..'>Index</a></div>
+<div><a href='/scratchpad/'>Index</a></div>
<hr/>
<time datetime='{{ .Timestamp }}' pubdate>{{ .Timestamp }}</time>
{{.Body}}
</article>{{end}}{{define "title"}}{{.Timestamp}}{{end}}{{define "stylePrefix"}}{{end}}{{template "page" .}}`
+
atom = `<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>http://henry.precheur.org/scratchpad/</id>