aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/related-posts.html
blob: 70a56f3c10fdf7d461e1c1df2ae164da283426fd (plain)
1
2
3
4
5
6
7
8
9
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 %}