blob: 99a7852ec2df5ca8c82cd5af3fde2abf6bc2a5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html data-theme="light" lang="en">
<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>
|