diff options
author | HombreLaser <buran@silosneeded.com> | 2025-07-23 23:47:17 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2025-07-23 23:47:17 -0600 |
commit | 2e9174357890ee27036c3921106b39999db4b772 (patch) | |
tree | df614516b3336e2874358a7d3bd092711564ce1a /_layouts/post.html | |
parent | 195ab400b5cb4a3d28fe9091674aaadb3f80db77 (diff) |
Fix for mobile
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 5e71126..3a76d42 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,5 +1,16 @@ ---- -layout: default ---- +<!DOCTYPE html> +<html> + {% include header.liquid %} + + <div class="columns"> + <div class="column page-container mt-4"> + {% include top_bar.liquid %} + + <div class="column is-full content mt-4"> + {{ content }} + </div> + </div> + </div> +</html> + -{{ content }} |