summaryrefslogtreecommitdiffstats
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-12-05 21:02:04 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-12-05 22:18:44 +0800
commit30293dc25b4dfae6d5d5d0eee28c20e96f608317 (patch)
tree878535cf6084130e99bd874249782ada90119b30 /_layouts/post.html
parented62f33434151df53981a4ed1571b2567ce2ceb7 (diff)
downloadwww-30293dc25b4dfae6d5d5d0eee28c20e96f608317.tar.gz
Fix alignment on small screens.
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 050fd6d..298228c 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -13,11 +13,13 @@
<main>
<div class="container">
- <h2 class="center" id="title">{{ page.title | upcase }}</h2>
- <h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
- <br>
- <div class="twocol justify">{{ content }}</div>
- <p class="post-author right">by {{ page.author }}</p>
+ <div class="container-2">
+ <h2 class="center" id="title">{{ page.title | upcase }}</h2>
+ <h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
+ <br>
+ <div class="twocol justify">{{ content }}</div>
+ <p class="post-author right">by {{ page.author }}</p>
+ </div>
</div>
</main>