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