##// END OF EJS Templates
Bumped verstions of css and js.
Bumped verstions of css and js.

File last commit:

r244:4f74a04e default
r244:4f74a04e default
Show More
base.html
56 lines | 1.9 KiB | text/html | HtmlLexer
{% load staticfiles %}
{% load i18n %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="{{ STATIC_URL }}css/base.css" media="all"/>
<link rel="stylesheet" type="text/css"
href="{{ STATIC_URL }}css/{{ theme }}/base_page.css?6" media="all"/>
<link rel="alternate" type="application/rss+xml" href="rss/" title="
{% trans 'Feed' %}"/>
<link rel="icon" type="image/png"
href="{{ STATIC_URL }}favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta charset="utf-8"/>
{% block head %}{% endblock %}
</head>
<body>
<script src="{{ STATIC_URL }}js/jquery-2.0.1.min.js"></script>
<script src="{{ STATIC_URL }}js/jquery-ui-1.10.3.custom.min.js"></script>
<script src="{{ STATIC_URL }}js/jquery.mousewheel.js"></script>
<script src="{% url 'django.views.i18n.javascript_catalog' %}"></script>
<script src="{{ STATIC_URL }}js/refmaps.js"></script>
<script src="{{ STATIC_URL }}js/panel.js"></script>
<script src="{{ STATIC_URL }}js/popup.js"></script>
<script src="{{ STATIC_URL }}js/image.js"></script>
<script src="{{ STATIC_URL }}js/main.js?1"></script>
<div class="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>
{% endfor %}
<a class="tag" href="{% url 'tags' %}" title="{% trans 'Tag management' %}"
>[...]</a>
<a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
</div>
{% block content %}{% endblock %}
<div class="navigation_panel">
{% block metapanel %}{% endblock %}
[<a href="{% url "login" %}">{% trans 'Login' %}</a>]
<a class="link" href="#top">{% trans 'Up' %}</a>
</div>
<div class="footer">
<!-- Put your banners here -->
</div>
</body>
</html>