the categories theme was using the frameset theme's templates...

This commit is contained in:
Michael Save 2012-03-03 23:41:14 +11:00
parent d446ba94b9
commit bbe8660244
3 changed files with 32 additions and 32 deletions

View file

@ -23,31 +23,18 @@
</ul>
</fieldset>
{% for category, boards in categories %}
<fieldset>
<legend>
{{ category }}
</legend>
<fieldset>
<legend>Boards</legend>
<ul>
{% for board in boards %}
<li>
<a href="{{ board.uri }}">{{ board.title }}</a>
<a href="{{ config.board_path|sprintf(board.uri) }}">
{{ board.title }}
</a>
</li>
{% endfor %}
</fieldset>
{% endfor %}
{% for category, links in config.custom_categories %}
<fieldset>
<legend>
{{ category }}
</legend>
{% for title, uri in links %}
<li>
<a href="{{ uri }}">{{ title }}</a>
</li>
{% endfor %}
</fieldset>
{% endfor %}
</ul>
</fieldset>
</body>
</html>
{% endfilter %}