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

github.com/athul/archie.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorathul <athul8720@gmail.com>2020-04-11 09:59:35 +0300
committerathul <athul8720@gmail.com>2020-04-11 09:59:35 +0300
commit42143c8903fc47b7001a31e275a4def891216929 (patch)
tree6c7fd00555a78ddecb8c3d948c80ce9a56667607
parent451eda0b3a0b62c31ced4041d9f46a23a12cda97 (diff)
baseof added
-rw-r--r--themes/archie/exampleSite/config.toml6
-rw-r--r--themes/archie/layouts/_default/baseof.html11
2 files changed, 16 insertions, 1 deletions
diff --git a/themes/archie/exampleSite/config.toml b/themes/archie/exampleSite/config.toml
index 608035d..cb4c3aa 100644
--- a/themes/archie/exampleSite/config.toml
+++ b/themes/archie/exampleSite/config.toml
@@ -2,9 +2,13 @@ baseURL = "https://athul.github.io/archie/"
languageCode = "en-us"
title = "Archie"
theme="archie"
+copyright = "© Athul"
+pygmentsstyle = "monokai"
+pygmentscodefences = true
+pygmentscodefencesguesssyntax = true
[params]
featherIconsCDN=true
- subtitle = "Minimal and Crisp blog theme for hugo [blog theme for Hugo](https://github.com/vividvilla/ezhil)"
+ subtitle = "Minimal and Clean [blog theme for Hugo](https://github.com/athul/archie)"
[[params.social]]
name = "GitHub"
diff --git a/themes/archie/layouts/_default/baseof.html b/themes/archie/layouts/_default/baseof.html
new file mode 100644
index 0000000..5f8e2ec
--- /dev/null
+++ b/themes/archie/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ {{- partial "head.html" . -}}
+ <body>
+ {{- partial "header.html" . -}}
+ <div id="content">
+ {{- block "main" . }}{{- end }}
+ </div>
+ {{- partial "footer.html" . -}}
+ </body>
+</html>