~ubuntu-branches/ubuntu/trusty/python-babel/trusty

« back to all changes in this revision

Viewing changes to docs/_themes/babel/layout.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-10-28 10:11:31 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131028101131-zwbmm8sc29iemmlr
Tags: 1.3-2ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/rules: Run the testsuite during builds.

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
  <link href="//fonts.googleapis.com/css?family=Bree+Serif" rel="stylesheet" type="text/css">
 
10
  <link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
 
11
{% endblock %}
 
12
{%- block relbar2 %}{% endblock %}
 
13
{% block header %}
 
14
  {{ super() }}
 
15
  {% if pagename == 'index' %}
 
16
  <div class=indexwrapper>
 
17
  {% endif %}
 
18
{% endblock %}
 
19
{%- block footer %}
 
20
  <div class="footer">
 
21
    &copy; Copyright {{ copyright }}.
 
22
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a>.
 
23
  </div>
 
24
  {% if pagename == 'index' %}
 
25
  </div>
 
26
  {% endif %}
 
27
{%- endblock %}