~ubuntu-branches/ubuntu/utopic/python-chaco/utopic

« back to all changes in this revision

Viewing changes to docs/source/_templates/layout.html

  • Committer: Package Import Robot
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2014-06-01 17:04:08 UTC
  • mfrom: (7.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20140601170408-m86xvdjd83a4qon0
Tags: 4.4.1-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
 - Let the binary-predeb target work on the usr/lib/python* directory
   as we don't have usr/share/pyshared anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{# Filename: .templates/layout.html #}
2
 
{% extends '!layout.html' %}
3
 
 
4
 
{# Change page TOC title #}
5
 
{%- block sidebartoc %}
6
 
{%- if display_toc %}
7
 
<h3>Page Contents</h3>
8
 
{{ toc }}
9
 
{%- endif %}
10
 
{%- endblock %}
11
 
 
12
 
{# Remove "Next topic" and "Previous topic" links from sidebar #}
13
 
{%- block sidebarrel %}
14
 
{%- endblock %}
15
 
 
16
 
{# Include current page title in breadcrumbs #}
17
 
{% block relbaritems %}
18
 
  {% if current_page_name != 'index' %}
19
 
    <li><a href="{{ pathto(current_page_name) }}">{{ title }}</a></li>
20
 
  {% endif %}
21
 
{% endblock %}
22