diff options
| author | Étienne Loks <etienne.loks@proxience.com> | 2014-09-22 01:30:40 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@proxience.com> | 2014-09-22 01:30:40 +0200 |
| commit | e52f9f1cbef803c826510bfdea46ea205240a882 (patch) | |
| tree | 799f791b3928413b5d60ade81bc040fe6e5a0698 /templates/chimere/base.html | |
| parent | 5c4d02160ddf89e187850bb27c42ef734cf574ec (diff) | |
| download | Chimère-e52f9f1cbef803c826510bfdea46ea205240a882.tar.bz2 Chimère-e52f9f1cbef803c826510bfdea46ea205240a882.zip | |
Work on search engine - new bootstrap layout
Diffstat (limited to 'templates/chimere/base.html')
| -rw-r--r-- | templates/chimere/base.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/templates/chimere/base.html b/templates/chimere/base.html new file mode 100644 index 0000000..2468571 --- /dev/null +++ b/templates/chimere/base.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% load chimere_tags i18n %} +{% block extra_head %} +<link rel="stylesheet" href="{{ STATIC_URL }}chimere/css/styles.css" /> +<link rel="stylesheet" href="{{ STATIC_URL }}chimere/css/print.css" media='print'/> +{% if css_area %} +<link rel="stylesheet" href="{{ css_area }}" />{% endif %} +{% if MOBILE %} +<link rel="stylesheet" href="{{ STATIC_URL }}chimere/css/mobile.css" /> +<script src="{{ STATIC_URL }}chimere/js/mobile.chimere.js" type="text/javascript"></script>{%endif%} +<link rel="stylesheet" href="{{ STATIC_URL }}bootstrap/bootstrap.min.css" /> +<link rel="stylesheet" href="{{ STATIC_URL }}chimere/css/form-compat.css" /> +<link rel="stylesheet" href="{{ STATIC_URL }}chimere/css/extra-styles.css" /> +<script src="{{ STATIC_URL }}bootstrap/bootstrap.min.js" type="text/javascript"></script> +<script src="{{ STATIC_URL }}chimere/js/interface.js" type="text/javascript"></script> +{% endblock %} +{% block header %} +<noscript> + <div id="no-js-message"> + <p id='no-js' class='warning'>{% trans "You must enable JavaScript in your browser to display Chimère."%}</p> + </div> +</noscript> + {% block page_title %}{% endblock %} + {% block actions %} + {% include "chimere/blocks/actions.html" %} + {% endblock %} +{% endblock %} +{% block content %} + {% block top %}{% endblock %} + {% block message_map %}{% endblock %} + {% block message_edit %}{% endblock %} + {% block bottom %}{% endblock %} +{% endblock %} +{% block footer %} + {% include "chimere/blocks/footer.html" %} +{% endblock %} + |
