diff options
Diffstat (limited to 'www/layouts/list.html')
-rw-r--r-- | www/layouts/list.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/layouts/list.html b/www/layouts/list.html new file mode 100644 index 0000000..1d4ec56 --- /dev/null +++ b/www/layouts/list.html @@ -0,0 +1,14 @@ +{{ define "head"}} + {{ partial "css.html" "res/css/article.css" }} +{{ end }} + +{{ define "content" }} + {{ partial "nav.html" . }} + <h1>{{ .Title }}</h1> + <hr/> + {{ partial "preview/posts.html" (dict + "h" "h3" + "pages" .RegularPages + ) + }} +{{ end }} |