help.html 341 B

123456789101112
  1. {% extends 'simple/page_with_header.html' %}
  2. {% block title %}{{ page.title }} - {% endblock %}
  3. {% block content %}
  4. <ul class="tabs">
  5. {% for name, page in all_pages %}
  6. <li>
  7. <a href="{{name}}" {% if name == page_filename %}class="active"{% endif %}>{{page.title}}</a>
  8. </li>
  9. {% endfor %}
  10. </ul>
  11. {{ page.content | safe }}
  12. {% endblock %}