first work on rendering
[stapibas.git] / data / templates / default / mentions.htm
1 {% if arData.comments %}
2 <h3 id="m-comments">Comments</h3>
3 <ul class="m-container m-comments">
4  {% for commentRow in arData.comments %}
5    {% include 'mentions-comment.htm' %}
6  {% endfor %}
7 </ul>
8 {% endif %}
9
10 {% if arData.links %}
11 <h3 id="m-links">Links to this page</h3>
12 <ul class="m-container m-links">
13  {% for linkRow in arData.links %}
14    <li>{% include 'mentions-link.htm' %}</li>
15  {% endfor %}
16 </ul>
17 {% endif %}