From 3c6cb7f29631dfcdd954e7cbd5d2370efe7eb827 Mon Sep 17 00:00:00 2001 From: olOwOlo <26087907+olOwOlo@users.noreply.github.com> Date: Sun, 27 Aug 2017 22:38:42 +0800 Subject: đ first commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layouts/404.html | 18 +++++++++ layouts/_default/baseof.html | 39 ++++++++++++++++++++ layouts/_default/section.html | 56 ++++++++++++++++++++++++++++ layouts/_default/single.html | 7 ++++ layouts/_default/single.md | 1 + layouts/_default/taxonomy.html | 47 ++++++++++++++++++++++++ layouts/_default/terms.html | 45 +++++++++++++++++++++++ layouts/index.html | 25 +++++++++++++ layouts/partials/comments.html | 35 ++++++++++++++++++ layouts/partials/footer.html | 37 +++++++++++++++++++ layouts/partials/head.html | 71 ++++++++++++++++++++++++++++++++++++ layouts/partials/header.html | 13 +++++++ layouts/partials/post/copyright.html | 33 +++++++++++++++++ layouts/partials/post/reward.html | 19 ++++++++++ layouts/partials/post/toc.html | 8 ++++ layouts/partials/scripts.html | 55 ++++++++++++++++++++++++++++ layouts/partials/slideout.html | 19 ++++++++++ layouts/post/single.html | 64 ++++++++++++++++++++++++++++++++ layouts/post/summary.html | 27 ++++++++++++++ layouts/robots.txt | 2 + layouts/shortcodes/music.html | 62 +++++++++++++++++++++++++++++++ layouts/sitemap.xml | 11 ++++++ 22 files changed, 694 insertions(+) create mode 100644 layouts/404.html create mode 100644 layouts/_default/baseof.html create mode 100644 layouts/_default/section.html create mode 100644 layouts/_default/single.html create mode 100644 layouts/_default/single.md create mode 100644 layouts/_default/taxonomy.html create mode 100644 layouts/_default/terms.html create mode 100644 layouts/index.html create mode 100644 layouts/partials/comments.html create mode 100644 layouts/partials/footer.html create mode 100644 layouts/partials/head.html create mode 100644 layouts/partials/header.html create mode 100644 layouts/partials/post/copyright.html create mode 100644 layouts/partials/post/reward.html create mode 100644 layouts/partials/post/toc.html create mode 100644 layouts/partials/scripts.html create mode 100644 layouts/partials/slideout.html create mode 100644 layouts/post/single.html create mode 100644 layouts/post/summary.html create mode 100644 layouts/robots.txt create mode 100644 layouts/shortcodes/music.html create mode 100644 layouts/sitemap.xml (limited to 'layouts') diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..81a37e9 --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,18 @@ +{{ define "title" }}404 page not found - {{ .Site.Title }}{{ end }} + +{{ define "content" }} +
/* 404 page not found. */
+ ++ {{ $lang.copyright.author }}: + {{ if .Params.author }}{{ .Params.author | safeHTML }}{{ else }}{{ .Site.Author.name | safeHTML }}{{ end }} +
++ {{ $lang.copyright.lastMod }}: + {{ .Lastmod.Format "2006-01-02" }} +
++ {{ $lang.copyright.link }}: + {{ .Permalink }} +
+ {{ if $.Site.Params.linkToMarkDown -}} + {{ with $.OutputFormats.Get "markdown" -}} ++ {{ $lang.copyright.markdown }}: + {{ $lang.posts.seeMarkDown }} +
+ {{- end }} + {{- end }} ++ {{ $lang.copyright.lincese }}: + {{ if .Params.copyright -}} + {{ .Params.copyright | safeHTML }} + {{ else -}} + {{ .Site.Copyright | safeHTML }} + {{- end }} +
+