140 lines
4.2 KiB
HTML
140 lines
4.2 KiB
HTML
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="/assets/favicons/favicon-16x16.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="96x96"
|
|
href="/assets/favicons/favicon-caution-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="/assets/favicons/favicon-caution-96x96.png"
|
|
/>
|
|
<!-- Preload Plus Jakarta Sans font weights -->
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-ExtraLight.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-Light.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-Regular.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-Medium.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-SemiBold.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-Bold.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
href="/assets/fonts/PlusJakartaSans-ExtraBold.otf"
|
|
as="font"
|
|
type="font/otf"
|
|
crossorigin
|
|
/>
|
|
<!-- Preload Plus Jakarta Sans font weights -->
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta content="{{ site.title }}" property="og:site_name" />
|
|
|
|
{% if page.noindex %}
|
|
<meta name="robots" content="noindex" />
|
|
{% endif %} {% if page.title %}
|
|
<meta content="{{ page.tagline }}" property="og:title" />
|
|
<meta content="article" property="og:type" />
|
|
{% else %}
|
|
<meta content="website" property="og:type" />
|
|
{% endif %} {% if page.summary %}
|
|
<meta content="{{ page.summary }}" property="og:description" />
|
|
{% else %}
|
|
<meta content="{{ site.description }}" property="og:description" />
|
|
{% endif %} {% if page.url %}
|
|
<meta content="{{ site.url }}{{ page.url }}" property="og:url" />
|
|
{% endif %} {% if page.date %}
|
|
<meta
|
|
content="{{ page.date | date_to_xmlschema }}"
|
|
property="article:published_time"
|
|
/>
|
|
<meta content="{{ site.url }}/about/" property="article:author" />
|
|
{% endif %} {% if page.thumbnail %}
|
|
<meta content="{{ site.url }}{{ page.thumbnail }}" property="og:image" />
|
|
{% else %}
|
|
<meta content="{{ site.banner }}" property="og:image" />
|
|
{% endif %} {% if page.categories %} {% for category in page.categories
|
|
limit:1 %}
|
|
<meta content="{{ category }}" property="article:section" />
|
|
{% endfor %} {% endif %} {% if page.tags %} {% for tag in page.tags %}
|
|
<meta content="{{ tag }}" property="article:tag" />
|
|
{% endfor %} {% endif %}
|
|
|
|
<!-- Twitter Cards -->
|
|
<meta name="twitter:card" content="summary" />
|
|
<!--<meta name="twitter:site" content="@{{ site.share.twitter_username }}" />-->
|
|
<!--<meta name="twitter:creator" content="@{{ site.share.twitter_username }}" />-->
|
|
|
|
{% if page.title %}
|
|
<meta name="twitter:title" content="{{ page.title }}" />
|
|
{% else %}
|
|
<meta name="twitter:title" content="{{ site.title }}" />
|
|
{% endif %} {% if page.url %}
|
|
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}" />
|
|
{% endif %} {% if page.summary %}
|
|
<meta name="twitter:description" content="{{ page.summary }}" />
|
|
{% else %}
|
|
<meta name="twitter:description" content="{{ site.description }}" />
|
|
{% endif %} {% if page.header-img %}
|
|
<meta name="twitter:image:src" content="{{ site.url }}{{ page.thumbnail }}" />
|
|
{% endif %} {% if page.robots %}
|
|
<meta name="robots" content="{{page.robots}}" />
|
|
{% endif %} <link rel="stylesheet" type="text/css" href="{{ "/assets/main.css"
|
|
| relative_url }}"> <link rel="stylesheet" type="text/css" href="{{
|
|
"/assets/main-dark.css" | relative_url }}">
|
|
|
|
<script src="/assets/js/main.js" defer></script>
|
|
|
|
<!-- "Really, there is nothing interesting to see here. It is a static website. -->
|
|
<!-- Here is the terraform code that deployed it, and here is the site source repo. -->
|
|
<!-- If you find anything interesting or want to talk to us, reach out via our /contact page!" -->
|
|
<!-- https://git.distrust.co/public/stack -->
|
|
<!-- https://git.distrust.co/public/website -->
|
|
<!-- mobile menu content -->
|
|
</head>
|