mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Enhance the sphinx experience/nagivation with: * Remove the pointless looking parts of breadcrumb navigtation * Add a document type switcher to the breadcrumb navigation * Add a version selection switch to the breadcrumb navigation (From yocto-docs rev: 1823624bdb9ea002d44c9e6d0fd4cd662bff36ad) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
409 B
HTML
15 lines
409 B
HTML
{% extends "!breadcrumbs.html" %}
|
|
|
|
{% block breadcrumbs %}
|
|
<li>
|
|
<span class="doctype_switcher_placeholder">{{ doctype or 'single' }}</span>
|
|
<span class="version_switcher_placeholder">{{ release }}</span>
|
|
</li>
|
|
<li> »</li>
|
|
{% for doc in parents %}
|
|
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a> »</li>
|
|
{% endfor %}
|
|
<li>{{ title }}</li>
|
|
{% endblock %}
|
|
|