mirror of
https://github.com/andrewgioia/blog.git
synced 2025-01-30 14:41:23 +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 }}
|