header.html 667 B

123456789101112131415161718
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. {% if page.title %}
  5. <title>
  6. {{ page.title }} – {{ site.description }}
  7. </title>
  8. {% endif %}
  9. <meta charset="UTF-8">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
  13. </head>
  14. <body>
  15. <div class="container-lg px-3 my-5 markdown-body">
  16. {% if page.title %}
  17. <h1>{{ page.title }} – {{ site.description }}</h1>
  18. {% endif %}