mirror of
https://github.com/andrewgioia/blog.git
synced 2024-11-14 20:44:47 +00:00
9 lines
157 B
HTML
9 lines
157 B
HTML
|
{{ define "main" }}
|
||
|
<h1>Posts</h1>
|
||
|
{{ range .Pages }}
|
||
|
<article>
|
||
|
<h2>{{ .Title }}</h2>
|
||
|
{{ .Content }}
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
{{ end }}
|