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

github.com/IvanChou/hugo-theme-vec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/page/single.html')
-rw-r--r--layouts/page/single.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layouts/page/single.html b/layouts/page/single.html
new file mode 100644
index 0000000..f073d57
--- /dev/null
+++ b/layouts/page/single.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title> {{ .Title }} &middot; {{ .Site.Title }} </title>
+
+ {{ partial "head.html" . }}
+</head>
+
+<body>
+ {{ partial "header.html" . }}
+ <div class="content">
+ <section class="post">
+ <h2 class="post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
+ <div class="post-content">
+ {{ .Content }}
+ </div>
+ </section>
+ </div>
+ {{ partial "footer.html" . }}
+
+ {{ with .Site.Params.AnalyticsID }}{{ partial "analytics.html" . }}{{ end }}
+
+</body>
+
+</html> \ No newline at end of file