leftypol/templates/themes/categories/sidebar.html

55 lines
1.2 KiB
HTML
Raw Normal View History

2012-02-14 10:26:08 +00:00
{% filter remove_whitespace %}
<!doctype html>
<html>
<head>
2012-03-04 04:17:30 +00:00
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
2012-02-14 10:26:08 +00:00
<title>{{ settings.title }}</title>
<link rel="stylesheet" media="screen" href="{{ config.url_stylesheet }}"/>
<style type="text/css">
fieldset{margin:10px 0}
legend{width:100%;margin-left:-15px;background:#98E;border:1px solid white;color:white;font-weight:bold;padding:5px 5px}
ul{margin:0;padding:0}
li{list-style:none;padding:0 4px;margin: 0 4px}
li a.system{font-weight:bold}
</style>
<base target="main"/>
</head>
<body>
<fieldset>
<legend>{{ settings.title }}</legend>
<ul>
<li>
<a class="system" href="{{ settings.file_news }}">[News]</a>
</li>
</ul>
</fieldset>
{% for category, boards in categories %}
<fieldset>
<legend>
{{ category }}
</legend>
2012-02-14 10:26:08 +00:00
{% for board in boards %}
<li>
2012-05-05 15:33:10 +00:00
<a href="{{ board.uri }}">{{ board.title|e }}</a>
2012-02-14 10:26:08 +00:00
</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 %}
2012-02-14 10:26:08 +00:00
</body>
</html>
{% endfilter %}