Compare commits
12 Commits
760559843d
...
8171d2a889
Author | SHA1 | Date |
---|---|---|
Ryan Heywood | 8171d2a889 | |
Ryan Heywood | d3378425b8 | |
Ryan Heywood | 0a592aafeb | |
Anton Livaja | 6a298f7abc | |
Anton Livaja | 935ae2aa01 | |
Anton Livaja | 49d18d4226 | |
Anton Livaja | 35a33d681b | |
Anton Livaja | 705c87ab12 | |
Anton Livaja | c57925b3f4 | |
Anton Livaja | 3a705aae2b | |
Anton Livaja | 7b737dd834 | |
Anton Livaja | c63e566a2d |
|
@ -21,9 +21,10 @@
|
||||||
title: Distrust
|
title: Distrust
|
||||||
email: lance@distrust.co
|
email: lance@distrust.co
|
||||||
description: >- # this means to ignore newlines until "baseurl:"
|
description: >- # this means to ignore newlines until "baseurl:"
|
||||||
Trust Nothing
|
Understand and mitigate security threats others won't see coming.
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
url: "https://distrust.co" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "https://distrust.co" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
|
banner: "https://distrust.co/assets/base/distrust-logo.png"
|
||||||
|
|
||||||
header_pages:
|
header_pages:
|
||||||
- index.md
|
- index.md
|
||||||
|
@ -35,7 +36,7 @@ header_pages:
|
||||||
style: dark # dark (default), light or hacker
|
style: dark # dark (default), light or hacker
|
||||||
listen_for_clients_preferred_style: false # false (default) or true
|
listen_for_clients_preferred_style: false # false (default) or true
|
||||||
|
|
||||||
footer: '2023 Distrust, LLC'
|
footer: '2024 Distrust, LLC'
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
theme: jekyll-theme-console
|
theme: jekyll-theme-console
|
||||||
|
|
|
@ -6,38 +6,94 @@
|
||||||
<link rel="icon" type="image/png" sizes="96x96" href="/assets/favicons/favicon-96x96.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">
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }}</title>
|
||||||
|
<meta content="{{ site.title }}" property="og:site_name" />
|
||||||
|
|
||||||
{% if page.robots %}
|
{% if page.noindex %}
|
||||||
<meta name="robots" content="{{page.robots}}" />
|
<meta name="robots" content="noindex" />
|
||||||
|
{% endif %} {% if page.title %}
|
||||||
|
<meta content="{{ page.title }}" property="og:title" />
|
||||||
|
<meta content="article" property="og:type" />
|
||||||
|
{% else %}
|
||||||
|
<meta content="{{ site.banner }}" property="og:image" />
|
||||||
|
<meta content="{{ site.title }}" property="og:title" />
|
||||||
|
<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" />
|
||||||
|
{% 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 %}
|
{% endif %}
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
|
{% if page.url %}
|
||||||
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_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 %}
|
||||||
|
|
||||||
<!-- "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 -->
|
{% if page.robots %}
|
||||||
<div class="menu-content" style="display: none">
|
<meta name="robots" content="{{page.robots}}" />
|
||||||
<div class="inner-menu-content">
|
{% endif %}
|
||||||
<div>
|
|
||||||
<a href="/index.html">Home</a>
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
|
||||||
</div>
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
|
||||||
<div>
|
|
||||||
<a href="/about.html">About</a>
|
<!-- "Really, there is nothing interesting to see here. It is a static website. -->
|
||||||
</div>
|
<!-- Here is the terraform code that deployed it, and here is the site source repo. -->
|
||||||
<div>
|
<!-- If you find anything interesting or want to talk to us, reach out via our /contact page!" -->
|
||||||
<a href="/services.html">Services</a>
|
<!-- https://git.distrust.co/public/stack -->
|
||||||
</div>
|
<!-- https://git.distrust.co/public/website -->
|
||||||
<div>
|
<!-- mobile menu content -->
|
||||||
<a href="/tools.html">Tools</a>
|
|
||||||
</div>
|
<div class="menu-content" style="display: none">
|
||||||
<div>
|
<div class="inner-menu-content">
|
||||||
<a href="/contact.html">Contact</a>
|
<div>
|
||||||
</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>
|
||||||
|
<div>
|
||||||
|
<a href="/contact.html">Contact</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
<div class="flex-container-inner">
|
<div class="flex-container-inner">
|
||||||
<div class="text-well">
|
<div class="text-well">
|
||||||
<h3>git-sig</h3>
|
<h3>git-sig</h3>
|
||||||
<a href="https://git.distrust.co/public/enclaveos" target="_blank" rel="noopener noreferrer">https://git.distrust.co/public/enclaveos</a>
|
<a href="https://git.distrust.co/public/git-sig" target="_blank" rel="noopener noreferrer">https://git.distrust.co/public/gitsig</a>
|
||||||
<p>The simple multisig toolchain for git repos.</p>
|
<p>The simple multisig toolchain for git repos.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -130,4 +130,4 @@
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -457,8 +457,8 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
margin-top: 24px;
|
margin-top: 48px;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.extra-spacing {
|
.extra-spacing {
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Loading…
Reference in New Issue