arcanis.me/_layouts/paper.html
2018-03-06 01:28:29 +03:00

53 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
comment: true
share: true
back: 2
layout: default
---
<div class="wrapper">
<header>
{% if page.category == "ru" %}
{% assign post = page %}
<p>{% include shortdate_to_ru.html %}</p>
<p><b>Тeги</b>: {{ page.tags }}</p>
{% if page.tags contains 'offtop' %}
<!-- do nothing -->
{% else %}
<p><b>Похожие посты</b>:<br>
{% for post in site.related_posts limit:5 %}
{% if post.tags contains 'offtop' %}
<!-- do nothing -->
{% else %}
{% if post.category == "ru" %}
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a><br>
{% endif %}
{% endif %}
{% endfor %}
</p>
{% endif %}
{% else %}
<p>{{ page.date | date_to_string }}<br></p>
<p><b>Tags</b>: {{ page.tags }}</p>
{% if page.tags contains 'offtop' %}
<!-- do nothing -->
{% else %}
<p><b>Related posts</b>:<br>
{% for post in site.related_posts limit:5 %}
{% if post.tags contains 'offtop' %}
<!-- do nothing -->
{% else %}
{% if post.category != "ru" %}
<a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a><br>
{% endif %}
{% endif %}
{% endfor %}
</p>
{% endif %}
{% endif %}
</header>
<section>
<h1><a href="#" class="anchor" id="title"><span class="octicon octicon-link"></span></a>{{ page.title }}</h1>
{{ content }}