##// END OF EJS Templates
Merged with the old validation changes.
Merged with the old validation changes.

File last commit:

r75:bb74538a merge default
r75:bb74538a merge default
Show More
base.html
43 lines | 1.3 KiB | 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
Changed fancybox skin a bit.
r65 href="{{ STATIC_URL }}css/jquery.fancybox.css" media="all"/>
neko259
Added js popup for image viewing.
r63 <link rel="stylesheet" type="text/css"
neko259
Changed fancybox skin a bit.
r65 href="{{ STATIC_URL }}css/{{ theme }}/base_page.css" media="all"/>
neko259
Changed themes.
r36 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 {% block head %}{% endblock %}
</head>
<body>
neko259
xs
r54 <script src="{{ STATIC_URL }}js/jquery-2.0.1.min.js"></script>
neko259
Added js popup for image viewing.
r63 <script src="{{ STATIC_URL }}js/jquery.fancybox.pack.js"></script>
neko259
xs
r54 <script src="{{ STATIC_URL }}js/main.js"></script>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 <div id="admin_panel">
{% if request.session.admin == True %}
Admin panel TODO: Need to implement <BR />
{% endif %}
</div>
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 <div class="navigation_panel">
neko259
Fixed medadata design when an image is present. Added a method to determine if the tag is empty (has no attached threads).
r33 <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
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 <a class="tag" href="{% url 'tags' %}">[...]</a>
neko259
Added themes support. Added 'snow white' theme by Mystra_x64.
r35 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 </div>
{% block content %}{% endblock %}
neko259
#29 Added a thread title to the page title. #31 Added a panel to the page bottom.
r44 <div class="navigation_panel">
{% block metapanel %}{% endblock %}
<a class="link" href="#top">{% trans 'Up' %}</a>
</div>
Ilyas
Added admin loing possibility. Now it is abailable under {BASE_URL}/boards/login...
r9 </body>
</html>