1234567891011121314151617181920212223242526 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{page.title}}{% endblock %}
- {% block content %}
- <div id="custom-page">
- <div id="page-header">
- <h2>{{page.title}}</h2>
- </div>
- {% if page.toc %}{{page.toc|safe}}{% endif %}
- <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>
- {{page.content|safe}}
- <div id="prev-next">
- {% if page.prev %}
- <a href="{{page.prev.uri}}">« {{page.prev.title}}</a>
- {% endif %}
- {% if all page.prev page.next %}
- ||
- {% endif %}
- {% if page.next %}
- <a href="{{page.next.uri}}">{{page.next.title}} »</a>
- {% endif %}
- </div>
- </div>
- {% endblock %}
|