| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en-US">
- <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">
- {% seo %}
- <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 site.description %}
- <h1>GitHub Pages: <a href="{{ "/" | absolute_url }}">{{ site.description }}</a></h1>
- {% endif %}
- {{ content }}
- {% include footer.html %}
|