index.html 875 B

1234567891011121314151617181920212223242526
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{page.title}}{% endblock %}
  3. {% block content %}
  4. <div id="custom-page">
  5. <div id="page-header">
  6. <h2>{{page.title}}</h2>
  7. </div>
  8. {% if page.toc %}{{page.toc|safe}}{% endif %}
  9. <p>iSpooge Daily... do you<a href="media/jarg300.txt" target="dict" title=":spooge: /spooj/ 1. n. Inexplicable or arcane code, or random and probably incorrect output from a computer program. 2. vi. To generate spooge (sense 1).">?</a></p>
  10. {{page.content|safe}}
  11. <div id="prev-next">
  12. {% if page.prev %}
  13. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  14. {% endif %}
  15. {% if all page.prev page.next %}
  16. ||
  17. {% endif %}
  18. {% if page.next %}
  19. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  20. {% endif %}
  21. </div>
  22. </div>
  23. {% endblock %}