diff --git a/layouts/partials/page.html b/layouts/partials/page.html new file mode 100644 index 0000000..0be4486 --- /dev/null +++ b/layouts/partials/page.html @@ -0,0 +1,11 @@ +
+ +
+

{{ .Title }}

+
+ +
+ {{ .Content }} +
+
+ diff --git a/layouts/partials/post.html b/layouts/partials/post.html new file mode 100644 index 0000000..2f17c68 --- /dev/null +++ b/layouts/partials/post.html @@ -0,0 +1,75 @@ +
+
+

{{ .Title }}

+ {{ .Description }} + + + +
+ +
+ {{ .Content }} + {{ if .Site.DisqusShortname }} +
+ {{ template "_internal/disqus.html" . }} +
+ {{ end }} +
+ +
+ {{ if eq .Site.Params.TogglePreviousAndNextButtons "true" }} + {{ if or .PrevInSection .NextInSection }} + {{ partial "prev-next.html" . }} + {{ end }} + {{ end }} +
+ + + {{ if .Site.Params.ShowBackToTopButton }} + + {{ end }} + + {{ if .Site.Params.CustomCommentHTML }} +
+ {{ .Site.Params.CustomCommentHTML | safeHTML }} +
+ {{ end }} +