forked from aweekj/kiko-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.html
46 lines (40 loc) · 960 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
37
38
39
40
41
42
43
44
45
46
---
layout: default
---
<article class="post">
<h1>{{ page.title }}</h1>
<div clsss="meta">
<span class="date">
{{ page.date | date: "%Y-%m-%d" }}
</span>
<ul class="tag">
{% for tag in page.tags %}
<li>
<a href="{{ site.url }}{{ site.baseurl }}/tags#{{ tag }}">
{{ tag }}
</a>
</li>
{% endfor %}
</ul>
</div>
<div class="entry">
{{ content }}
</div>
<div class="pagination">
{% if page.previous.url %}
<span class="prev" >
<a href="{{ site.url }}{{ site.baseurl }}{{ page.previous.url }}">
 {{ page.previous.title }}
</a>
</span>
{% endif %}
{% if page.next.url %}
<span class="next" >
<a href="{{ site.url }}{{ site.baseurl }}{{ page.next.url }}">
{{ page.next.title }} 
</a>
</span>
{% endif %}
</div>
{% include disqus.html %}
</article>