src/cm/templates/site/non_authenticated_index.html
changeset 220 7d278fde2748
parent 203 84b8af5ed884
child 550 05b5e51e8823
equal deleted inserted replaced
219:908a9cd85e48 220:7d278fde2748
    18 <tr>
    18 <tr>
    19 <td width="70%" style="vertical-align:text-top;">
    19 <td width="70%" style="vertical-align:text-top;">
    20 <h2>{% blocktrans count public_texts|length as counter %}One public text{% plural %}{{ counter }} public texts{% endblocktrans %}</h2>
    20 <h2>{% blocktrans count public_texts|length as counter %}One public text{% plural %}{{ counter }} public texts{% endblocktrans %}</h2>
    21 <ul>
    21 <ul>
    22 {% for text in public_texts %}
    22 {% for text in public_texts %}
    23 <li><a title="{{ text.title }}" href="{% url text-view text.key %}">{{ text.title }}</a>
    23 <li style="padding-bottom:10px;"><a title="{{ text.title }}" href="{% url text-view text.key %}">{{ text.title }}</a>
    24 <br/>
    24 <br/>
    25 {% include "site/macros/text_meta.html" %}   
    25 {% include "site/macros/text_meta.html" %}   
    26 </li>
    26 </li>
    27 {% endfor %}
    27 {% endfor %}
    28 </ul>
    28 </ul>