-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.html
33 lines (33 loc) · 1.07 KB
/
page.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
{% extends "index.html" %}
{% block main %}
<section class="single-wrap">
<article class="single-content" itemscope itemtype="http://schema.org/BlogPosting">
<div class="feat">
<h5 class="page-date">
<time datetime="{{ page.date | date(format="%Y-%m-%d") }}" itemprop="datePublished">
{{ page.date | date(format="%d %b %Y") }}
</time>
</h5>
</div>
<h1 class="page-title" itemprop="name headline">{{ page.title }}</h1>
<div itemprop="articleBody">
{{ page.content | safe }}
</div>
<div class="feat share">
<a href="http://twitter.com/share" class="popup">
<span class="icon-twitter"></span>
</a>
</div>
{% if page.later %}
<a rel="next" href="{{ page.later.permalink }}" id="next">
<span class="nav-title nav-title-next">newer</span> →
</a>
{% endif %}
{% if page.earlier %}
<a rel="prev" href="{{ page.earlier.permalink }}" id="prev">
←<span class="nav-title nav-title-prev">older</span>
</a>
{% endif %}
</article>
</section>
{% endblock main %}