##// END OF EJS Templates
Fixed resetting cache when the thread is bumped
Fixed resetting cache when the thread is bumped

File last commit:

r1171:3ae68f16 default
r1240:92ddbd4a default
Show More
base.html
73 lines | 2.9 KiB | text/html | HtmlLexer
{% load staticfiles %}
{% load i18n %}
{% load l10n %}
{% load static from staticfiles %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}" media="all"/>
<link rel="stylesheet" type="text/css" href="{% static 'css/3party/highlight.css' %}" media="all"/>
<link rel="stylesheet" type="text/css" href="{% static 'css/3party/jquery-ui.min.css' %}" media="all"/>
<link rel="stylesheet" type="text/css" href="{% static theme_css %}" media="all"/>
<link rel="alternate" type="application/rss+xml" href="rss/" title="{% trans 'Feed' %}"/>
<link rel="icon" type="image/png"
href="{% static 'favicon.png' %}">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta charset="utf-8"/>
{% block head %}{% endblock %}
</head>
<body data-image-viewer="{{ image_viewer }}">
<script src="{% static 'js/jquery-2.0.1.min.js' %}"></script>
<script src="{% static 'js/3party/jquery-ui.min.js' %}"></script>
<script src="{% static 'js/jquery.mousewheel.js' %}"></script>
<script src="{% url 'js_info_dict' %}"></script>
<div class="navigation_panel header">
<a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
{% if tags_str %}
{% autoescape off %}
{{ tags_str }},
{% endautoescape %}
{% else %}
{% trans 'Add tags' %} →
{% endif %}
<a href="{% url 'tags' 'required'%}" title="{% trans 'Tag management' %}">{% trans "tags" %}</a>,
<a href="{% url 'search' %}" title="{% trans 'Search' %}">{% trans 'search' %}</a>,
<a href="{% url 'feed' %}" title="{% trans 'Feed' %}">{% trans 'feed' %}</a>
{% if username %}
<a class="right-link link" href="{% url 'notifications' username %}" title="{% trans 'Notifications' %}">
{% trans 'Notifications' %}
{% ifnotequal new_notifications_count 0 %}
(<b>{{ new_notifications_count }}</b>)
{% endifnotequal %}
</a>
{% endif %}
<a class="right-link link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
</div>
{% block content %}{% endblock %}
<script src="{% static 'js/3party/highlight.min.js' %}"></script>
<script src="{% static 'js/popup.js' %}"></script>
<script src="{% static 'js/image.js' %}"></script>
<script src="{% static 'js/refpopup.js' %}"></script>
<script src="{% static 'js/main.js' %}"></script>
<div class="navigation_panel footer">
{% block metapanel %}{% endblock %}
[<a href="{% url 'admin:index' %}">{% trans 'Admin' %}</a>]
{% with ppd=posts_per_day|floatformat:2 %}
{% blocktrans %}Speed: {{ ppd }} posts per day{% endblocktrans %}
{% endwith %}
<a class="link" href="#top" id="up">{% trans 'Up' %}</a>
</div>
</body>
</html>