diff options
author | HombreLaser <buran@silosneeded.com> | 2025-07-23 22:32:49 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2025-07-23 22:32:49 -0600 |
commit | 20f8f8779c5ba0902f6332760d4c59a00300bd5f (patch) | |
tree | 14b4c55fad8e202f82ece005d7470dc008fd06f9 /_layouts |
Initial commit
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 15 | ||||
-rw-r--r-- | _layouts/page.html | 5 | ||||
-rw-r--r-- | _layouts/post.html | 5 |
3 files changed, 25 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..6f9cb0c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> + {% include header.liquid %} + + <body> + <div class="columns"> + <div class="column is-half is-offset-one-quarter mt-4"> + {% include top_bar.liquid %} + <div class="columns content mt-4"> + {{ content }} + </div> + </div> + </div> + </body> +</html> diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..5e71126 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,5 @@ +--- +layout: default +--- + +{{ content }} diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..5e71126 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,5 @@ +--- +layout: default +--- + +{{ content }} |