This commit is contained in:
2019-04-19 21:30:55 +03:00
commit 840267b63e
97 changed files with 12204 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{% if article.related_posts %}
<section class="well" id="related-posts">
<h4>{{ RELATED_POSTS_TEXT|default('Related Posts:') }}</h4>
<ul>
{% for related_post in article.related_posts %}
<li><a href="{{ SITEURL }}/{{ related_post.url }}">{{ related_post.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %}