summaryrefslogtreecommitdiffstats
path: root/askbot/templates/base.html
blob: 93f1c170080eadb3e9c613e55f2e87659e861135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{% load compress %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>{% block title %}{% endblock %} - {{ settings.APP_TITLE|escape }}</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
        {% block meta_description %}
        <meta name="description" content="{{settings.APP_DESCRIPTION|escape}}" />
        {% endblock %}
        <meta name="keywords" content="{%block keywords%}{%endblock%},{{settings.APP_KEYWORDS|escape}}" />
        {% if settings.GOOGLE_SITEMAP_CODE %}
        <meta name="google-site-verification" content="{{settings.GOOGLE_SITEMAP_CODE}}" />
        {% endif %}
        <meta name="referrer" content="always" />
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
        {% if settings.SITE_FAVICON %}
        <link rel="shortcut icon" href="{{ settings.SITE_FAVICON|media }}" />
        {% endif %}
        <link
            rel="alternate"
            type="application/rss+xml"
            title="{% trans site_title=settings.APP_SHORT_NAME %}RSS feed from {{ site_title }}{% endtrans %}"
            href="{{ base_url }}{% url "latest_questions_feed" %}"
        />
        {% block before_css %}{% endblock %}
        {% include "meta/html_head_stylesheets.html" %}
        {% include "meta/fonts.html" %} {# may contain external files #}
        {% block forestyle %}{% endblock %}
        {% include "meta/html_head_javascript.html" %}
        {% block forejs %}{% endblock %}
        {% if settings.USE_CUSTOM_HTML_HEAD %}
            {{ settings.CUSTOM_HTML_HEAD }}
        {% endif %}
    </head>
    <body class="{% block body_class %}{% endblock %}{% if user_messages %} user-messages{% endif %}{% if page_class %} {{page_class}}{% endif %}{% if request.user.is_anonymous() %} anon{% endif %} lang-{{ language_code }}">
        {% include "widgets/system_messages.html" %}
        {% include "debug_header.html" %}
        {% if settings.MULTILINGUAL %}
            <div class="content-wrapper">
                {% include "widgets/language_nav.html" %}
            </div>
        {% endif %}
        {% include "custom_header.html" ignore missing %}
        {% if settings.CUSTOM_HEADER|trim != '' %}
        <div id="custom-header">
            {{settings.CUSTOM_HEADER}}
        </div>
        {% endif %}
        {% include "widgets/header.html" %} {# Logo, user tool navigation and meta navitation #}
        {% include "widgets/secondary_header.html" %} {# Scope selector, search input and ask button #}
        {% if settings.ENABLE_LEADING_SIDEBAR %}
        <div id="leading-sidebar">
            {{ settings.LEADING_SIDEBAR }}
        </div>
        {% endif %}
        <div class="content-wrapper">
            {% block body %}
            {% endblock %}
        </div>
        {% if settings.FOOTER_MODE == 'default' %}
            {% include "widgets/footer.html" %}
        {% elif settings.FOOTER_MODE == 'customize' %}
            {{ settings.CUSTOM_FOOTER }}
        {% endif %}
        {% include "custom_footer.html" ignore missing %}
        {% include "meta/bottom_scripts.html" %}
        {% block endjs %}
        {% endblock %}
        <script type="text/javascript">
            for (url_name in askbot['urls']){
                askbot['urls'][url_name] = cleanUrl(askbot['urls'][url_name]);
            }
        </script>
    </body>
</html>