aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-05-07 00:29:01 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-05-07 00:29:01 +0200
commita16e8a21bb83325f8e40c13ef2d052393e2f6489 (patch)
tree9ce727b225308953e397a284d4f1fcd5cab75e63 /templates/post.html
parente7c5dc01cf3bf382c82dd6984808bd3ca21d33a5 (diff)
downloadmacroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.tar.gz
macroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.tar.bz2
macroblog.rs-a16e8a21bb83325f8e40c13ef2d052393e2f6489.zip
feat: Add early blog implementation
It is just a really crappy implementation to get it running until a figure the pieces of the project out.
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html
new file mode 100644
index 0000000..68211c1
--- /dev/null
+++ b/templates/post.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html data-theme="light" lang="en">
+<head>
+ <% include!("head.html"); %>
+</head>
+<body>
+<% include!("simple_header.html"); %>
+<main class="container">
+ <%- content %>
+</section>
+</main>
+</body>
+</html>