Browse Source

frameset theme fix

pull/40/head
Michael Save 12 years ago
parent
commit
2a243b2acb
  1. 15
      templates/themes/frameset/sidebar.html

15
templates/themes/frameset/sidebar.html

@ -20,24 +20,21 @@
<li> <li>
<a class="system" href="{{ settings.file_news }}">[News]</a> <a class="system" href="{{ settings.file_news }}">[News]</a>
</li> </li>
<li>
<a class="system" href="javascript:parent.removeFrames()">[Remove Frames]</a>
</li>
</ul> </ul>
</fieldset> </fieldset>
{% for category, boards in config.categories %} {% for category, boards in categories %}
<fieldset> <fieldset>
<legend> <legend>
{{ category }} {{ category }}
</legend> </legend>
{% for board in boards %} {% for board in boards %}
<li> <li>
{{ board }} <a href="{{ board.uri }}">{{ board.title }}</a>
</li> </li>
{% endif %} {% endfor %}
</fieldset> </fieldset>
{% endif %} {% endfor %}
{% for category, links in config.custom_categories %} {% for category, links in config.custom_categories %}
<fieldset> <fieldset>
@ -48,9 +45,9 @@
<li> <li>
<a href="{{ uri }}">{{ title }}</a> <a href="{{ uri }}">{{ title }}</a>
</li> </li>
{% endif %} {% endfor %}
</fieldset> </fieldset>
{% endif %} {% endfor %}
</body> </body>
</html> </html>
{% endfilter %} {% endfilter %}

Loading…
Cancel
Save