1
0

default.html 721 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  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. {% seo %}
  13. <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
  14. </head>
  15. <body>
  16. <div class="container-lg px-3 my-5 markdown-body">
  17. {% if site.description %}
  18. <h1>GitHub Pages: <a href="{{ "/" | absolute_url }}">{{ site.description }}</a></h1>
  19. {% endif %}
  20. {{ content }}
  21. {% include footer.html %}