blob: 4b053185f30c3f3592e125f233b7f8cc5b928be6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% include header.html %}
<div class="row">
<div class="col-md-8">
<h1>{{ page.title }}</h1>
<p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ page.date | date_to_long_string }}</p>
{{ content }}
<hr/>
{% include comments.html %}
</div>
<div class="col-md-4">
{% include sidebar.html %}
</div>
</div>
{% include footer.html %}
|