##// END OF EJS Templates
Added themes support. Added 'snow white' theme by Mystra_x64.
Added themes support. Added 'snow white' theme by Mystra_x64.

File last commit:

r35:4962ee48 default
r35:4962ee48 default
Show More
base.html
31 lines | 786 B | text/html | HtmlLexer
{% load staticfiles %}
{% load i18n %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="{{ STATIC_URL }}/css/{{ theme }}/base_page.css" media="all"/>
{% block head %}{% endblock %}
</head>
<body>
<div id="admin_panel">
{% if request.session.admin == True %}
Admin panel TODO: Need to implement <BR />
{% endif %}
</div>
<div id="navigation_panel">
<a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
{% for tag in tags %}
<a class="tag" href=" {% url 'tag' tag_name=tag.name %}">
{{ tag.name }}</a>({{ tag.get_post_count }})
{% endfor %}
<a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
</div>
{% block content %}{% endblock %}
</body>
</html>