-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpost.html
36 lines (32 loc) · 918 Bytes
/
post.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>{{data.site.title}} | {{data.page.title}}</title>
<link rel="stylesheet" href="/assets/css/style.css" />
</head>
<body>
<nav>
{% for i in data.nav_links %}
<a href="/{{i.url}}">{{ i.title }}</a>
{% endfor %}
</nav>
<section class="hero">
<p class="a-title">
{{data.page.title}}
</p>
<p class="a-date">{{data.page.date or data.page.datetime}}</p>
<p class="a-author">{{data.page.author or data.site.author}}</p>
</section>
<div class="content markdown-body">
{{data.page.content}}
</div>
<footer>
<p>
© {{data.site.year}} {{data.site.title}}
</p>
</footer>
</body>
</html>