arcanis.me/_layouts/paper.html
2014-01-16 21:42:36 +04:00

41 lines
1.4 KiB
HTML

---
comment: true
share: true
back: 2
layout: default
---
<body>
<div class="wrapper">
<header>
<h1>{{ page.title }}</h1>
{% if page.category == "ru" %}
<p align="justify">{{ page.date | date_to_string }}<br>
<i>Последнее редактирование: {{ page.last | date_to_string }}</i></p>
<p align="justify"><b>Тэги</b>: {{ page.tags }}</p>
<p align="justify"><b>Похожие посты</b>:<br>
{% for post in site.related_posts limit:3 %}
{% if post.category == "ru" %}
<i>{{ page.last | date_to_string }}</i> <a href="{{ post.url }}">{{ post.title }}</a><br>
{% endif %}
{% endfor %}
</p>
{% else %}
<p align="justify">{{ page.date | date_to_string }}<br>
<i>Last edit: {{ page.last | date_to_string }}</i></p>
<p align="justify"><b>Tags</b>: {{ page.tags }}</p>
<p align="justify"><b>Related posts</b>:<br>
{% for post in site.related_posts limit:3 %}
{% if post.category != "ru" %}
<i>{{ page.last | date_to_string }}</i> <a href="{{ post.url }}">{{ post.title }}</a><br>
{% endif %}
{% endfor %}
</p>
{% endif %}
</header>
<section>
<a name="" class="anchor" href="#"><span class="octicon octicon-link"></span></a>
<p align="justify">{{ page.description }}</p>
{{ content }}