2019-05-20 20:41:39 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en"{% if templateClass %} class="{{ templateClass }}"{% endif %}>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-04-03 14:06:24 +02:00
|
|
|
<link rel="icon" href="docs/static/borgmatic.png" type="image/x-icon">
|
2019-05-20 20:41:39 +02:00
|
|
|
<title>{{ subtitle + ' - ' if subtitle}}{{ title }}</title>
|
|
|
|
{%- set css %}
|
|
|
|
{% include 'index.css' %}
|
|
|
|
{% include 'components/lists.css' %}
|
|
|
|
{% include 'components/external-links.css' %}
|
|
|
|
{% include 'components/minilink.css' %}
|
|
|
|
{% include 'components/toc.css' %}
|
|
|
|
{% include 'components/info-blocks.css' %}
|
|
|
|
{% include 'prism-theme.css' %}
|
|
|
|
{% include 'asciinema.css' %}
|
|
|
|
{% endset %}
|
|
|
|
<style>{{ css | safe }}</style>
|
|
|
|
{% if feedTitle and feedUrl %}
|
|
|
|
<link rel="alternate" href="{{ feedUrl }}" title="{{ feedTitle }}" type="application/atom+xml">
|
|
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{{ content | safe }}
|
2023-03-23 10:15:23 +01:00
|
|
|
{% initClipboardJS %}
|
2019-05-20 20:41:39 +02:00
|
|
|
</body>
|
|
|
|
</html>
|