summaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
authorDejavu Moe <[email protected]>2023-05-19 11:10:15 +0800
committerDejavu Moe <[email protected]>2023-05-19 11:10:15 +0800
commit1742e527203403dc5151c070d00195ea130d2747 (patch)
treec7cf1b6b0b57d95d8c2c706ca6ba9fecc6659c70 /layouts
downloadhugo-theme-dejavu-1742e527203403dc5151c070d00195ea130d2747.tar.gz
hugo-theme-dejavu-1742e527203403dc5151c070d00195ea130d2747.zip
init hugo theme
Diffstat (limited to 'layouts')
-rw-r--r--layouts/404.html0
-rw-r--r--layouts/_default/baseof.html11
-rw-r--r--layouts/_default/list.html0
-rw-r--r--layouts/_default/single.html0
-rw-r--r--layouts/index.html0
-rw-r--r--layouts/partials/footer.html0
-rw-r--r--layouts/partials/head.html0
-rw-r--r--layouts/partials/header.html0
8 files changed, 11 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/404.html
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..5f8e2ec
--- /dev/null
+++ b/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>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/_default/list.html
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/_default/single.html
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/index.html
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/partials/footer.html
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/partials/head.html
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/partials/header.html