aboutsummaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html32
1 files changed, 17 insertions, 15 deletions
diff --git a/templates/post.html b/templates/post.html
index 7e0a909..99a7852 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -1,18 +1,20 @@
<!DOCTYPE html>
<html data-theme="light" lang="en">
-<head>
- <% include!("head.html"); %>
-</head>
-<body>
-<% include!("header.html"); %>
-<main class="container">
- <h2><%- title %></h2>
- <h5>Created At: <%- date %></h2>
- <%- content %>
- </section>
-</main>
-</body>
-
-<script>
-</script>
+ <head>
+ <% include!("head.html"); %>
+ </head>
+ <body>
+ <div class="layout">
+ <% include!("header.html"); %>
+ <main>
+ <article>
+ <h1><%- title %></h1>
+ <time>Created At: <%- date %></time>
+ <div class="blog-post-content">
+ <%- content %>
+ </div>
+ </article>
+ </main>
+ </div>
+ </body>
</html>