##// END OF EJS Templates
Add ambiplayer
Add ambiplayer

File last commit:

r2148:06e50007 ambiplayer
r2148:06e50007 ambiplayer
Show More
base.html
99 lines | 4.4 KiB | text/html | HtmlLexer
Ilyas
Templates moved to fit django documentation structure....
r84 {% load staticfiles %}
{% load i18n %}
neko259
Fixed PPD precision
r409 {% load l10n %}
neko259
Using static template tag for resources.
r260 {% load static from staticfiles %}
Ilyas
Templates moved to fit django documentation structure....
r84
<!DOCTYPE html>
<html>
<head>
neko259
Removed all static and HTML compressors as GZIP can be used anyway
r899 <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"/>
neko259
Added tags autocompletion to the thread creation form
r1115 <link rel="stylesheet" type="text/css" href="{% static 'css/3party/jquery-ui.min.css' %}" media="all"/>
neko259
Context menu for moderation links
r1806 <link rel="stylesheet" type="text/css" href="{% static 'css/3party/jquery.contextMenu.min.css' %}" media="all"/>
Bohdan Horbeshko
Add ambiplayer
r2148 <link rel="stylesheet" type="text/css" href="{% static 'css/3party/ambiplayer.css' %}" media="all"/>
neko259
Removed all static and HTML compressors as GZIP can be used anyway
r899 <link rel="stylesheet" type="text/css" href="{% static theme_css %}" media="all"/>
neko259
Added CSS and JS compressor
r852
neko259
Show RSS in head only if it is available
r1401 {% if rss_url %}
<link rel="alternate" type="application/rss+xml" href="{{ rss_url }}" title="{% trans 'Feed' %}"/>
{% endif %}
neko259
Added link to RSS to the page head. This fixes #11
r93
neko259
Added favicon.
r108 <link rel="icon" type="image/png"
neko259
Using static template tag for resources.
r260 href="{% static 'favicon.png' %}">
neko259
Added favicon.
r108
neko259
Fixed some translation issues. Changed default captcha setting to "off" to pass tests. Removed the maximum page scale. This refs #36 and fixes #26, #2
r85 <meta name="viewport" content="width=device-width, initial-scale=1"/>
neko259
Defined encoding in the HTML. Fixed error 404 page on opening reply as thread. This fixes #46, #47
r86 <meta charset="utf-8"/>
neko259
Using static template tag for resources.
r260
Ilyas
Templates moved to fit django documentation structure....
r84 {% block head %}{% endblock %}
</head>
neko259
Use shared workers for favorites update script
r1463 <body data-image-viewer="{{ image_viewer }}"
data-pow-difficulty="{{ pow_difficulty }}"
data-update-script="{% static 'js/updates.js' %}">
neko259
Bumped jquery version to 2.2.0
r1477 <script src="{% static 'js/jquery-2.2.0.min.js' %}"></script>
Ilyas
Templates moved to fit django documentation structure....
r84
neko259
Make header and footer divs actually <header> and <footer>
r1676 <header class="navigation_panel">
neko259
Added landing page which will be the default on /
r1732 <a class="link" href="{% url 'landing' %}">{{ site_name }}</a>
neko259
Another word for 'all threads'
r1735 <a href="{% url 'index' %}" title="{% trans "All threads" %}">~~~</a>,
neko259
Refactored post view, added a hint of how to add new tags to favorites
r1093 {% if tags_str %}
neko259
Switch to show only favorite tags (BB-94)
r1691 <form action="{% url 'index' %}" method="post" class="post-button-form">{% csrf_token %}
{% if only_favorites %}
<button name="method" value="toggle_fav" class="fav">★</button>,
{% else %}
<button name="method" value="toggle_fav" class="not_fav">★</button>,
{% endif %}
</form>
neko259
Use safe instead of turning off autoescape in base template
r1679 {{ tags_str|safe }},
neko259
Refactored post view, added a hint of how to add new tags to favorites
r1093 {% endif %}
neko259
Since we show sections on the landing page now, always show all tags in the tags view
r1741 <a href="{% url 'tags' %}" title="{% trans 'Tag management' %}">{% trans "tags" %}</a>,
neko259
Remove dependency on haystack, use only built-in full text search
r1729 <a href="{% url 'search' %}" title="{% trans 'Search' %}">{% trans 'search' %}</a>,
neko259
Add random images list view
r1246 <a href="{% url 'feed' %}" title="{% trans 'Feed' %}">{% trans 'feed' %}</a>,
neko259
Rename 'random' button to 'images' because it's clearer to understand what is...
r1480 <a href="{% url 'random' %}" title="{% trans 'Random images' %}">{% trans 'images' %}</a>{% if has_fav_threads %},
neko259
Added favorite thread popup
r1340
neko259
Added ability to open fav posts as a feed with parameter
r1469 <a href="{% url 'feed' %}?favorites" id="fav-panel-btn">{% trans 'favorites' %} <span id="new-fav-post-count" {% if not new_post_count %}style="display: none" {% endif %}>{{ new_post_count }}</span></a>
neko259
Added favorite thread popup
r1340 {% endif %}
neko259
User notifications (BB-59)
r990
neko259
Subscribe to a multiple of users for notifications
r1429 {% if usernames %}
<a class="right-link link" href="{% url 'notifications' %}" title="{% trans 'Notifications' %}">
neko259
Don't show notification count if it is 0
r1048 {% trans 'Notifications' %}
{% ifnotequal new_notifications_count 0 %}
(<b>{{ new_notifications_count }}</b>)
{% endifnotequal %}
</a>
neko259
Made normal and gallery view use the same super-template with the same...
r1042 {% endif %}
neko259
User notifications (BB-59)
r990
neko259
Moved notifications link to right
r1049 <a class="right-link link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
neko259
Make header and footer divs actually <header> and <footer>
r1676 </header>
neko259
Other lookalike of favorite threads list
r1325
neko259
Added favorite thread popup
r1340 <div id="fav-panel"><div class="post">{% trans "Loading..." %}</div></div>
Ilyas
Templates moved to fit django documentation structure....
r84
neko259
Context menu for moderation links
r1806 <script src="{% static 'js/3party/jquery-ui.min.js' %}"></script>
<script src="{% static 'js/3party/jquery.contextMenu.min.js' %}"></script>
neko259
Made normal and gallery view use the same super-template with the same...
r1042 {% block content %}{% endblock %}
Ilyas
Templates moved to fit django documentation structure....
r84
neko259
Load some external JS libraries after content
r1407 <script src="{% static 'js/jquery.mousewheel.js' %}"></script>
neko259
Made normal and gallery view use the same super-template with the same...
r1042 <script src="{% static 'js/3party/highlight.min.js' %}"></script>
Bohdan Horbeshko
Add ambiplayer
r2148 <script src="{% static 'js/3party/ambiplayer.js' %}"></script>
neko259
Load some external JS libraries after content
r1407
<script src="{% url 'js_info_dict' %}"></script>
neko259
Made normal and gallery view use the same super-template with the same...
r1042 <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>
neko259
Moved some other JS code to the end of page
r446
neko259
Make header and footer divs actually <header> and <footer>
r1676 <footer class="navigation_panel">
neko259
Show version info on every page, not just thread list
r1737 <b><a href="{% url "authors" %}">{{ site_name }}</a> {{ version }}</b>
neko259
Made normal and gallery view use the same super-template with the same...
r1042 {% block metapanel %}{% endblock %}
neko259
New RSS url model with proper links (no page attribute)
r1399 {% if rss_url %}
[<a href="{{ rss_url }}">RSS</a>]
{% endif %}
neko259
Made normal and gallery view use the same super-template with the same...
r1042 [<a href="{% url 'admin:index' %}">{% trans 'Admin' %}</a>]
neko259
Added link to the pub-time sorted thread list
r1376 [<a href="{% url 'index' %}?order=pub">{% trans 'New threads' %}</a>]
neko259
Made normal and gallery view use the same super-template with the same...
r1042 {% 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>
neko259
Make header and footer divs actually <header> and <footer>
r1676 </footer>
Ilyas
Templates moved to fit django documentation structure....
r84
</body>
neko259
Added refmaps for the threads list.
r125 </html>