1234567891011121314151617181920212223242526272829 |
- <!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">
- <meta name="generator" content="{{ eleventy.generator }}">
- <link rel="icon" href="https://torsion.org/borgmatic/docs/static/borgmatic.png" type="image/x-icon">
- <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 }}
- {% initClipboardJS %}
- </body>
- </html>
|