Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ defaults:

exclude: ["README.md"]
include: ["_headers"]

local: false
4 changes: 4 additions & 0 deletions _config_local.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
url: file:///usr/share/secureblue/website
# or wherever we wanna put it idk

local: true
2 changes: 2 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
<li {% if include.content == "" %}aria-current="page"{% endif %}><a href="/"><img src="/assets/icons/favicon.svg" alt=""/>secureblue</a></li>
<li {% if include.content == "features" %}aria-current="page"{% endif %}><a href="/features">Features</a></li>
<li {% if include.content == "images" %}aria-current="page"{% endif %}><a href="/images">Images</a></li>
{%- unless site.local == true %}
<li {% if include.content == "install" %}aria-current="page"{% endif %}><a href="/install">Install</a></li>
{%- endunless %}
<li {% if include.content == "post-install" %}aria-current="page"{% endif %}><a href="/post-install">Post-Install</a></li>
<li {% if include.content == "faq" %}aria-current="page"{% endif %}><a href="/faq">FAQ</a></li>
<li {% if include.content == "contributing" %}aria-current="page"{% endif %}><a href="/contributing">Contributing</a></li>
Expand Down
4 changes: 3 additions & 1 deletion _includes/hero.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
<div>
<h1 id="secureblue"><a href="#secureblue">secureblue</a></h1>
<p>A security-focused desktop and server linux operating system.</p>
{%- unless site.local == true %}
<a class="button" href="/install">Get secureblue</a>
{%- endunless %}
</div>

<figure class="device-img">
<img class="laptop-img" width="288" height="171" src="/assets/some-random-laptop.svg" alt=""/>
<img class="laptop-logo-img" width="108" height="108" src="/assets/icons/favicon.svg" alt=""/>
</figure>

</div>
</div>
8 changes: 4 additions & 4 deletions _includes/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
<meta property="og:title" content="{{ page.title }}">
<meta property="og:description" content="{{ page.description }}">
<meta property="og:type" content="website">
<meta property="og:image" content="https://secureblue.dev/assets/icons/opengraph.png">
<meta property="og:image" content="{{ site.url }}/assets/icons/opengraph.png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
<meta property="og:image:alt" content="secureblue logo">
<meta property="og:site_name" content="secureblue">
<meta property="og:url" content="https://secureblue.dev/{{ include.content }}">
<meta property="og:url" content="{{ site.url }}/{{ include.content }}">

<link rel="canonical" href="https://secureblue.dev/{{ include.content }}">
<link rel="canonical" href="{{ site.url }}/{{ include.content }}">

<link rel="icon" type="image/png" href="/assets/icons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg">
Expand All @@ -42,4 +42,4 @@
<link rel="preload" href="/assets/fonts/roboto-v30-regular-latin.woff2" as="font" type="font/woff2" crossorigin="anonymous">

<link rel="preload" as="image" href="/assets/some-random-laptop.svg" type="image/svg+xml">
<link rel="preload" as="image" href="/assets/icons/favicon.svg" type="image/svg+xml">
<link rel="preload" as="image" href="/assets/icons/favicon.svg" type="image/svg+xml">
2 changes: 1 addition & 1 deletion content/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ You can install `kde-connect` by running `rpm-ostree install kde-connect` and th
### [How do I change my DE?](#change-de)
{: #change-de}

Choose whatever you like from the [available options](https://secureblue.dev/images) by running `ujust rebase-secureblue`.
Choose whatever you like from the [available options](/images) by running `ujust rebase-secureblue`.

### [How do I enable kernel modules?](#enable-kernel-modules)
{: #enable-kernel-modules}
Expand Down