date_hierarchy.html 372 B

12345678910
  1. {% if show %}
  2. <div class="xfull">
  3. <ul class="toplinks">
  4. {% if back %}<li class="date-back"><a href="{{ back.link }}">&lsaquo; {{ back.title }}</a></li>{% endif %}
  5. {% for choice in choices %}
  6. <li> {% if choice.link %}<a href="{{ choice.link }}">{% endif %}{{ choice.title }}{% if choice.link %}</a>{% endif %}</li>
  7. {% endfor %}
  8. </ul><br class="clear" />
  9. </div>
  10. {% endif %}