From 5facec02458ace3c279fcbc9e82326dfbb67ba40 Mon Sep 17 00:00:00 2001 From: 10mohi6 <10.mohi.6.y@gmail.com> Date: Thu, 28 May 2020 14:56:10 +0900 Subject: first commit --- layouts/_default/single.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 layouts/_default/single.html (limited to 'layouts/_default/single.html') diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..b9ae1bb --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,31 @@ +{{ partial "header.html" . }} +
+ {{ range .Params.categories }} + {{ . }} + {{ end }} +

{{ .Title }}

+

{{.Date.Format "January 2, 2006"}}

+ {{ range .Params.tags }} + #{{ . }} + {{ end }} +
+
+
+
+ {{ .Content }} +
+
+
+
+ {{ with .PrevInSection }} + < {{ .Title }} + {{ end }} +
+
+ {{ with .NextInSection }} + {{ .Title }} > + {{ end }} +
+
+
+{{ partial "footer.html" . }} \ No newline at end of file -- cgit v1.2.3