mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-22 13:37:10 +00:00
As a DX improvement in the documentation, include the release version (or Latest) in the breadcrumb header on every page. This can help readers know which release version documentation they're using. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
15 lines
464 B
HTML
15 lines
464 B
HTML
{% extends "!breadcrumbs.html" %}
|
|
{% block breadcrumbs %}
|
|
<!-- {{ docs_title }} -->
|
|
{# parameterize default name "Docs" in breadcrumb via docs_title in conf.py #}
|
|
{% if not docs_title %}
|
|
{% set docs_title = "Docs" %}
|
|
{% endif %}
|
|
|
|
<li><a href="{{ pathto(master_doc) }}">{{ docs_title }}</a> »</li>
|
|
{% for doc in parents %}
|
|
<li><a href="{{ doc.link|e }}">{{ doc.title }}</a> »</li>
|
|
{% endfor %}
|
|
<li>{{ title }}</li>
|
|
{% endblock %}
|