diff options
Diffstat (limited to 'documentation/_templates')
| -rw-r--r-- | documentation/_templates/breadcrumbs.html | 14 | ||||
| -rw-r--r-- | documentation/_templates/layout.html | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/documentation/_templates/breadcrumbs.html b/documentation/_templates/breadcrumbs.html new file mode 100644 index 0000000000..eb6244b74c --- /dev/null +++ b/documentation/_templates/breadcrumbs.html | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | {% extends "!breadcrumbs.html" %} | ||
| 2 | |||
| 3 | {% block breadcrumbs %} | ||
| 4 | <li> | ||
| 5 | <span class="doctype_switcher_placeholder">{{ doctype or 'single' }}</span> | ||
| 6 | <span class="version_switcher_placeholder">{{ release }}</span> | ||
| 7 | </li> | ||
| 8 | <li> »</li> | ||
| 9 | {% for doc in parents %} | ||
| 10 | <li><a href="{{ doc.link|e }}">{{ doc.title }}</a> »</li> | ||
| 11 | {% endfor %} | ||
| 12 | <li>{{ title }}</li> | ||
| 13 | {% endblock %} | ||
| 14 | |||
diff --git a/documentation/_templates/layout.html b/documentation/_templates/layout.html new file mode 100644 index 0000000000..308d5c7a28 --- /dev/null +++ b/documentation/_templates/layout.html | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | {% extends "!layout.html" %} | ||
| 2 | |||
| 3 | {% block extrabody %} | ||
| 4 | <div id="outdated-warning" style="text-align: center; background-color: #FFBABA; color: #6A0E0E;"> | ||
| 5 | </div> | ||
| 6 | {% endblock %} | ||
| 7 | |||
