From 9c2df1086d476de1872d142a55a5d2821619ffaf Mon Sep 17 00:00:00 2001 From: steven-y-e Date: Wed, 15 Sep 2021 16:05:06 -0400 Subject: [PATCH] feat(theme): skeleton implementation --- blog/themes/mineral/layouts/_default/baseof.html | 12 +++++++----- blog/themes/mineral/layouts/partials/footer.html | 5 +++++ blog/themes/mineral/layouts/partials/head.html | 14 ++++++++++++++ blog/themes/mineral/layouts/partials/header.html | 6 ++++++ 4 files changed, 32 insertions(+), 5 deletions(-) diff --git a/blog/themes/mineral/layouts/_default/baseof.html b/blog/themes/mineral/layouts/_default/baseof.html index 5f8e2ec..b2a0242 100644 --- a/blog/themes/mineral/layouts/_default/baseof.html +++ b/blog/themes/mineral/layouts/_default/baseof.html @@ -1,11 +1,13 @@ - + {{- partial "head.html" . -}} - {{- partial "header.html" . -}} -
- {{- block "main" . }}{{- end }} +
+ {{- partial "header.html" . -}} +
+ {{- block "main" . }}{{- end }} +
+ {{- partial "footer.html" . -}}
- {{- partial "footer.html" . -}} diff --git a/blog/themes/mineral/layouts/partials/footer.html b/blog/themes/mineral/layouts/partials/footer.html index e69de29..da43129 100644 --- a/blog/themes/mineral/layouts/partials/footer.html +++ b/blog/themes/mineral/layouts/partials/footer.html @@ -0,0 +1,5 @@ +
+
+

copyright (c) 2021 steven ye

+
+
\ No newline at end of file diff --git a/blog/themes/mineral/layouts/partials/head.html b/blog/themes/mineral/layouts/partials/head.html index e69de29..8c51670 100644 --- a/blog/themes/mineral/layouts/partials/head.html +++ b/blog/themes/mineral/layouts/partials/head.html @@ -0,0 +1,14 @@ + + + MT_TITLE + + + + + + + + + + + \ No newline at end of file diff --git a/blog/themes/mineral/layouts/partials/header.html b/blog/themes/mineral/layouts/partials/header.html index e69de29..d24c2b9 100644 --- a/blog/themes/mineral/layouts/partials/header.html +++ b/blog/themes/mineral/layouts/partials/header.html @@ -0,0 +1,6 @@ +
+
+

MT_SITE_TITLE

+

MT_SITE_SUBTITLE

+
+
\ No newline at end of file