website/_includes/head.html

51 lines
2.0 KiB
HTML
Raw Normal View History

2023-01-21 18:06:10 +00:00
<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, maximum-scale=1.0, user-scalable=no" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
2023-01-21 18:06:10 +00:00
<title>{{ page.title }}</title>
2024-05-13 20:16:06 +00:00
<meta property="og:title" content="Distrust" />
<meta property="og:site_name" content="Distrust" />
<meta property="og:description" content="Understand and mitigate security threats others won't see coming." />
<meta
property="og:image"
content="/assets/base/distrust-logo.png"
/>
2023-01-21 18:06:10 +00:00
{% 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 }}">
2023-10-24 16:47:07 +00:00
<!-- "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. -->
2024-03-29 02:04:36 +00:00
<!-- If you find anything interesting or want to talk to us, reach out via our /contact page!" -->
2023-10-24 16:47:07 +00:00
<!-- https://git.distrust.co/public/stack -->
<!-- https://git.distrust.co/public/website -->
2023-10-24 17:16:29 +00:00
<!-- mobile menu content -->
<div class="menu-content" style="display: none">
<div class="inner-menu-content">
<div>
<a href="/index.html">Home</a>
</div>
<div>
<a href="/about.html">About</a>
</div>
<div>
<a href="/services.html">Services</a>
</div>
<div>
<a href="/tools.html">Tools</a>
</div>
2023-10-24 17:16:29 +00:00
<div>
<a href="/contact.html">Contact</a>
2023-10-24 16:47:07 +00:00
</div>
</div>
2023-10-24 17:16:29 +00:00
</div>
2023-01-21 18:06:10 +00:00
</head>