summaryrefslogtreecommitdiffstats
path: root/_layouts
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2026-04-21 17:16:24 +0800
committerSadeep Madurange <sadeep@asciimx.com>2026-04-21 17:16:24 +0800
commitdf9bc9288b9aec590d39beb43eed0f7c2d577915 (patch)
treeeb6e683c3ccaf5b553fa3cf906858b3039d2da2e /_layouts
parent5abe8138425d6b083e66bbf5299537f1cc851b6a (diff)
downloadwww-df9bc9288b9aec590d39beb43eed0f7c2d577915.tar.gz
Minimalist theme.
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html6
-rw-r--r--_layouts/post.html21
2 files changed, 8 insertions, 19 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 835db63..628b523 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,15 +1,13 @@
<!doctype html>
<html lang="en-us">
- {% include header.html %}
+ {% include head.html %}
<body>
{% include nav.html %}
- <main class="container" id="main">{{ content }}</main>
-
- {% include foot.html %}
+ <article>{{ content }}</article>
</body>
</html>
diff --git a/_layouts/post.html b/_layouts/post.html
index b6c79a4..628b523 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,22 +1,13 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en-us">
- {% include header.html %}
- <body>
- {% include nav.html %}
+ {% include head.html %}
- <main>
- <div class="container">
- <div class="container-2">
- <h2 class="center" id="title">{{ page.title | upcase }}</h2>
- <h5 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
- <br>
- <div class="twocol justify">{{ content }}</div>
- </div>
- </div>
- </main>
+ <body>
+
+ {% include nav.html %}
- {% include foot.html %}
+ <article>{{ content }}</article>
</body>
</html>