-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpost.html
More file actions
22 lines (21 loc) · 780 Bytes
/
Copy pathpost.html
File metadata and controls
22 lines (21 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
---
<div class="container">
<div class="row">
<div class="col-md-3 text-left">
{% if page.previous %}<h5><a href="{{ page.previous.url }}" title="Previous news: {{ page.previous.title }}"><i class="fa fa-previous fa-lg"></i> Previous</a></h5>{% endif %}
</div>
<div class="col-md-6 text-center">
<h5><a href="/news" title="Back to news index"><i class="fa fa-home fa-lg"></i> Back to news</a></h5>
</div>
<div class="col-md-3 text-right">
{% if page.next %}<h5><a href="{{ page.next.url }}" title="Next news: {{ page.next.title }}"><i class="fa fa-next fa-lg"></i> Next</a></h5>{% endif %}
</div>
</div>
<div class="post">
<h4>{{ page.date | date: "%Y-%m-%d" }}</h4>
<h2>{{ page.title }}</h2>
<p>{{ content }}</p>
</div>
</div>