base.njk 1014 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html lang="en"{% if templateClass %} class="{{ templateClass }}"{% endif %}>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="generator" content="{{ eleventy.generator }}">
  7. <link rel="icon" href="https://torsion.org/borgmatic/docs/static/borgmatic.png" type="image/x-icon">
  8. <title>{{ subtitle + ' - ' if subtitle}}{{ title }}</title>
  9. {%- set css %}
  10. {% include 'index.css' %}
  11. {% include 'components/lists.css' %}
  12. {% include 'components/external-links.css' %}
  13. {% include 'components/minilink.css' %}
  14. {% include 'components/toc.css' %}
  15. {% include 'components/info-blocks.css' %}
  16. {% include 'prism-theme.css' %}
  17. {% include 'asciinema.css' %}
  18. {% endset %}
  19. <style>{{ css | safe }}</style>
  20. {% if feedTitle and feedUrl %}
  21. <link rel="alternate" href="{{ feedUrl }}" title="{{ feedTitle }}" type="application/atom+xml">
  22. {% endif %}
  23. </head>
  24. <body>
  25. {{ content | safe }}
  26. {% initClipboardJS %}
  27. </body>
  28. </html>