-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpost.html
39 lines (37 loc) · 1.46 KB
/
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
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ config.title }}</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/skeleton.css">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="one-half column" style="margin-top: 5%">
{% include "partials/navigation.html" %}
<ul>
{% for category in post.metadata.categories %}
<li class="categories">
<a class="categoryTag {{ category }}"
href="/categories/{% if post.metadata.default_lang %}{{ post.metadata.lang }}/{% endif %}{{ category | lower | trim }}">
{{ category }}
</a>
</li>
{% endfor %}
</ul>
<article class="content">
{{ post.content }}
</article>
</div>
</div>
</div>
{% include "partials/footer.html" %}
</body>
</html>