hswro_org/_layouts/default.html

36 lines
1.8 KiB
HTML
Raw Normal View History

2018-12-09 07:21:01 +00:00
<!DOCTYPE html>
<html lang="en">
2018-12-09 07:21:01 +00:00
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
2020-09-02 11:55:35 +00:00
<link rel="icon" type="image/png" href="{{ '/images/favicon-32x32.svg' | relative_url }}">
<link rel="preload" href="{{ '/assets/fonts/playfair-display.woff2' | relative_url }}" as="font" type="font/woff2" crossorigin>
2020-08-27 03:38:55 +00:00
<link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet">
{% if page.description %}<meta name="description" content="{{ page.description }}" />{% endif %}
{% if page.meta_title %}<meta property="og:title" content="{{ page.meta_title }}"/>{% else %}<meta property="og:title" content="{{ page.title }}"/>{% endif %}
<meta property="og:type" content="website"/>
<meta property="og:url" content="{{ url }}"/>
{% if page.image %}<meta property="og:image" content="{{ page.image | absolute_url }}"/>{% endif %}
{% if page.description %}<meta property="og:description" content="{{ page.description }}"/>{% endif %}
<meta name="twitter:card" content="summary"/>
{% if site.data.seo.meta_twitter_site %}<meta name="twitter:site" content="{{ site.seo.meta_twitter_site }}"/>{% endif %}
{% if site.data.seo.meta_twitter_creator %}<meta name="twitter:creator" content="{{ site.seo.meta_twitter_creator }}"/>{% endif %}
2018-12-09 07:21:01 +00:00
</head>
<body class='page {{layout.bodyClass}}'>
2018-12-09 07:21:01 +00:00
{% include main-menu-mobile.html %}
<div id="wrapper" class="wrapper">
{% include header.html headerClass='header-extra' %}
{{content}}
</div>
{% include footer.html %}
{% include sub-footer.html %}
2021-02-19 11:39:29 +00:00
<script type="text/javascript" src="{{ "/assets/js/scripts.js" | relative_url }}"></script>
2018-12-09 07:21:01 +00:00
{% include google-analytics.html %}
</body>
</html>