mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 02:03:01 +02:00
10 lines
585 B
Plaintext
10 lines
585 B
Plaintext
<header class="elv-layout elv-layout-full elv-header{% if headerClass %} {{ headerClass }}{% endif %}">
|
|
{% if page.url != '/' %}<h3><a href="https://torsion.org/borgmatic/">borgmatic</a></h3>{% endif %}
|
|
<div class="container" id="breadcrumb">
|
|
{% set breadcrumb = collections.all | eleventyNavigationBreadcrumb(eleventyNavigation.key, {allowMissing: true}) %}
|
|
{{ breadcrumb | eleventyNavigationToHtml | safe }}
|
|
</div>
|
|
<h1 class="elv-hed">{{ title | safe }}</h1>
|
|
{% if page.url == '/' %}<h3>It's your data. Keep it that way.</h3>{% endif %}
|
|
</header>
|