mirror of
https://github.com/metagov/govarch-website.git
synced 2025-05-02 06:04:39 +00:00
33 lines
985 B
HTML
33 lines
985 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ site.title }}{% if page.title and page.title != "" %} — {{ page.title }}{% endif %}</title>
|
|
|
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | absolute_url }}?{{ site.time | date: '%s%N' }}">
|
|
|
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
{%- include google-analytics.html -%}
|
|
{%- endif -%}
|
|
|
|
</head>
|
|
<body>
|
|
|
|
{{ content }}
|
|
|
|
{% include menu.html %}
|
|
|
|
{% unless site.hide_credits %}
|
|
<aside class="site-credits">
|
|
<p>
|
|
<small><a href="https://github.com/patdryburgh/hitchens">Hitchens Theme</a> powered by <a href="http://jekyllrb.com">Jekyll</a></small>
|
|
</p>
|
|
</aside>
|
|
{% endunless %}
|
|
|
|
</body>
|
|
</html> |