Compare commits

..

2 Commits

Author SHA1 Message Date
b8a26636e5
fix(blog): switch to relative paths for local URLs
This simplifies reading and writing the code for URLs, since they are
all contained within the web server's website root directory.
2025-07-01 18:15:05 +00:00
f7155b9dac
rebase(blog): webpage "Blog" "8.2.0-alpha.1" > "8.2.0" 2025-07-01 18:10:55 +00:00

View File

@ -1,7 +1,7 @@
<!DOCTYPE html>
<!-- Inferencium - Website - Blog -->
<!-- Version: 8.2.0-alpha.1 -->
<!-- Version: 8.3.0-alpha.1 -->
<!-- Copyright 2022 Jake Winters -->
<!-- SPDX-License-Identifier: BSD-3-Clause -->
@ -17,18 +17,18 @@
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.xhtml"><img src="asset/img/logo/inferencium-notext.png" alt="Inferencium logo"/></a></div>
<div class="title"><a href="index.xhtml">Inferencium</a></div>
<div><a href="about.xhtml">About</a></div>
<div><a href="news.xhtml">News</a></div>
<div><a href="documentation.xhtml">Documentation</a></div>
<div><a href="source.xhtml">Source</a></div>
<div><a href="changelog.xhtml">Changelog</a></div>
<div><a href="blog.xhtml">Blog</a></div>
<div><a href="contact.xhtml">Contact</a></div>
<div><a href="directory.xhtml">Directory</a></div>
<div><a href="key.xhtml">Key</a></div>
<div class="sitemap"><a href="sitemap.xhtml">Sitemap</a></div>
<div class="logo"><a href="index"><img src="asset/img/logo/inferencium-notext.png" alt="Inferencium logo"/></a></div>
<div class="title"><a href="index">Inferencium</a></div>
<div><a href="about">About</a></div>
<div><a href="news">News</a></div>
<div><a href="documentation">Documentation</a></div>
<div><a href="source">Source</a></div>
<div><a href="changelog">Changelog</a></div>
<div><a href="blog">Blog</a></div>
<div><a href="contact">Contact</a></div>
<div><a href="directory">Directory</a></div>
<div><a href="key">Key</a></div>
<div class="sitemap"><a href="sitemap">Sitemap</a></div>
</nav>
<h1>Blog</h1>
<nav id="toc">
@ -36,30 +36,30 @@
<ul>
<li><b>2024-07-05</b></li>
<ul>
<li><a href="blog/independence_day.xhtml">#5 - Independence Day</a></li>
<li><a href="blog/independence_day">#5 - Independence Day</a></li>
</ul>
<li><b>2024-06-04</b></li>
<ul>
<li><a href="blog/time_for_change.xhtml">#4 - Time for Change</a></li>
<li><a href="blog/time_for_change">#4 - Time for Change</a></li>
</ul>
<li><b>2022-12-20</b></li>
<ul>
<li><a href="blog/the_chromium_monopoly.xhtml">#3 - The Chromium Monopoly</a></li>
<li><a href="blog/the_chromium_monopoly">#3 - The Chromium Monopoly</a></li>
</ul>
<li><b>2022-06-30</b></li>
<ul>
<li><a href="blog/untrusted_the_issue_with_decentralisation.xhtml">#2 - Untrusted: The Issue with Decentralisation</a></li>
<li><a href="blog/untrusted_the_issue_with_decentralisation">#2 - Untrusted: The Issue with Decentralisation</a></li>
</ul>
<li><b>2022-01-29</b></li>
<ul>
<li><a href="blog/systemd_insecurity.xhtml">#1 - systemd Insecurity</a></li>
<li><a href="blog/systemd_insecurity">#1 - systemd Insecurity</a></li>
</ul>
<li><b>2022-01-27</b></li>
<ul>
<li><a href="blog/foss_is_working_against_itself.xhtml">#0 - FOSS is Working Against Itself</a></li>
<li><a href="blog/foss_is_working_against_itself">#0 - FOSS is Working Against Itself</a></li>
</ul>
</ul>
</nav>
<div class="sitemap-small"><a href="sitemap.xhtml">Sitemap</a></div>
<div class="sitemap-small"><a href="sitemap">Sitemap</a></div>
</body>
</html>