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

github.com/tblyler/light-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/post/single.html')
-rw-r--r--layouts/post/single.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/post/single.html b/layouts/post/single.html
new file mode 100644
index 0000000..74970ef
--- /dev/null
+++ b/layouts/post/single.html
@@ -0,0 +1,12 @@
+{{ partial "header.html" . }}
+ <div class="postBody">
+ <div class="post">
+ <h1>{{ .Title }}</h1>
+ <span class="post-meta">{{ .Date.Format "Mon, Jan 2, 2006" }} - Read in {{ .ReadingTime }} Min</span>
+ <div class="content">
+ {{ .TableOfContents }}
+ {{ .Content }}
+ </div>
+ </div>
+ </div>
+{{ partial "footer.html" . }}