暂无描述

date_hierarchy.html 518B

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