~tempo-openerp/+junk/loewert-report-name

« back to all changes in this revision

Viewing changes to server/doc/_themes/flask/layout.html

  • Committer: jbe at tempo-consulting
  • Date: 2013-08-21 08:48:11 UTC
  • Revision ID: jbe@tempo-consulting.fr-20130821084811-913uo4l7b5ayxq8m
[NEW] Création de la branche trunk Loewert

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{%- extends "basic/layout.html" %}
 
2
{%- block extrahead %}
 
3
  {{ super() }}
 
4
  {% if theme_touch_icon %}
 
5
  <link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
 
6
  {% endif %}
 
7
  <link media="only screen and (max-device-width: 480px)" href="{{
 
8
    pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" />
 
9
{% endblock %}
 
10
{%- block relbar2 %}{% endblock %}
 
11
{% block header %}
 
12
  {{ super() }}
 
13
  {% if pagename == 'index' %}
 
14
  <div class=indexwrapper>
 
15
  {% endif %}
 
16
{% endblock %}
 
17
{%- block footer %}
 
18
  <div class="footer">
 
19
    &copy; Copyright {{ copyright }}
 
20
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> and a modified <a href="https://github.com/mitsuhiko/flask-sphinx-themes">Flask theme</a>.
 
21
  </div>
 
22
  {% if pagename == 'index' %}
 
23
  </div>
 
24
  {% endif %}
 
25
{%- endblock %}