##// 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
neko259
Changed metadata design. Make space split tags.
r31 {% load staticfiles %}
neko259
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
r33 {% load i18n %}
neko259
Changed metadata design. Make space split tags.
r31
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 <!DOCTYPE html>
<html>
<head>
neko259
Changed metadata design. Make space split tags.
r31 <link rel="stylesheet" type="text/css"
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 href="{{ STATIC_URL }}/css/{{ theme }}/base_page.css" media="all"/>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 {% block head %}{% endblock %}
</head>
<body>
<div id="admin_panel">
{% if request.session.admin == True %}
Admin panel TODO: Need to implement <BR />
{% endif %}
</div>
neko259
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
r33 <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 %}
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
neko259
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
r33 </div>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 {% block content %}{% endblock %}
</body>
</html>