You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
884 B

  1. {% extends "base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. <div class="row">
  5. <div class="col-sm-2">
  6. <ul class="docs-nav">
  7. <li {% if section == "home" %} class="active" {% endif %}>
  8. <a href="{% url 'hc-docs' %}">How {% site_name %} Works</a>
  9. </li>
  10. <li {% if section == "api" %} class="active" {% endif %}>
  11. <a href="{% url 'hc-docs-api' %}">API Reference</a>
  12. </li>
  13. <li {% if section == "cron" %} class="active" {% endif %}>
  14. <a href="{% url 'hc-docs-cron' %}">Cron Syntax</a>
  15. </li>
  16. <li {% if section == "resources" %} class="active" {% endif %}>
  17. <a href="{% url 'hc-docs-resources' %}">Third-Party Resources</a>
  18. </li>
  19. </ul>
  20. </div>
  21. <div class="col-sm-10">
  22. {% block docs_content %}
  23. {% endblock %}
  24. </div>
  25. </div>
  26. {% endblock %}