45 lines
1.3 KiB
Django/Jinja
45 lines
1.3 KiB
Django/Jinja
{% macro breadcrumbs(history) %}
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="main.cgi">{{ "main"|lang }}</a></li>
|
|
{% for item in history %}
|
|
<li class="breadcrumb-item"{% if loop.last %} aria-current="page"{% endif %}>
|
|
{% if item.link %}<a href="{{ item.link }}">{% endif %}
|
|
{% if item.html %}
|
|
{% raw %}{{ item.html }}{% endraw %}
|
|
{% else %}
|
|
{{ item.text }}
|
|
{% endif %}
|
|
{% if item.link %}</a>{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|
|
{% endmacro %}
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<script>
|
|
window.onerror = function(error) {
|
|
window.console && console.error(error);
|
|
}
|
|
</script>
|
|
{{ head_static | safe }}
|
|
</head>
|
|
<body>
|
|
<div class="container py-3">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<script>
|
|
{% block js %}{% endblock %}
|
|
</script>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|