deleted unused file
Change-Id: I5a87a7b9cc9bc069724e55c9c39a71af756992e4
This commit is contained in:
parent
f9ff87595a
commit
e1bdf1aaa1
@ -1,71 +0,0 @@
|
||||
{% 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" %}
|
||||
{% 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>
|
Loading…
x
Reference in New Issue
Block a user