macroblog.rs @ master

 1<!DOCTYPE html>
 2<html data-theme="light" lang="en">
 3    <head>
 4        <% include!("head.html"); %>
 5    </head>
 6    <body>
 7        <div class="layout">
 8            <% include!("header.html"); %>
 9            <main>
10                <article>
11                    <h1><%- title %></h1>
12                    <time>Created At: <%- date %></time>
13                    <div class="blog-post-content">
14                        <%- content %>
15                    </div>
16                </article>
17            </main>
18        </div>
19    </body>
20</html>