Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tummychow/lanyon-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/post/post.html')
-rw-r--r--layouts/post/post.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/post/post.html b/layouts/post/post.html
new file mode 100644
index 0000000..c663721
--- /dev/null
+++ b/layouts/post/post.html
@@ -0,0 +1,12 @@
+{{ partial "default_head.html" . }}
+
+<div class="post">
+ <h1 class="post-title">{{ .Title }}</h1>
+ <ul id="list">
+ {{ range .Data.Pages }}
+ {{ .Render "li"}}
+ {{ end }}
+ </ul>
+</div>
+
+{{ partial "default_foot.html" . }}