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.
This commit is contained in:
parent
f7155b9dac
commit
b8a26636e5
40
blog.xhtml
40
blog.xhtml
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
<!-- Inferencium - Website - Blog -->
|
<!-- Inferencium - Website - Blog -->
|
||||||
<!-- Version: 8.2.0 -->
|
<!-- Version: 8.3.0-alpha.1 -->
|
||||||
|
|
||||||
<!-- Copyright 2022 Jake Winters -->
|
<!-- Copyright 2022 Jake Winters -->
|
||||||
<!-- SPDX-License-Identifier: BSD-3-Clause -->
|
<!-- SPDX-License-Identifier: BSD-3-Clause -->
|
||||||
@ -17,18 +17,18 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav class="navbar">
|
<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="logo"><a href="index"><img src="asset/img/logo/inferencium-notext.png" alt="Inferencium logo"/></a></div>
|
||||||
<div class="title"><a href="index.xhtml">Inferencium</a></div>
|
<div class="title"><a href="index">Inferencium</a></div>
|
||||||
<div><a href="about.xhtml">About</a></div>
|
<div><a href="about">About</a></div>
|
||||||
<div><a href="news.xhtml">News</a></div>
|
<div><a href="news">News</a></div>
|
||||||
<div><a href="documentation.xhtml">Documentation</a></div>
|
<div><a href="documentation">Documentation</a></div>
|
||||||
<div><a href="source.xhtml">Source</a></div>
|
<div><a href="source">Source</a></div>
|
||||||
<div><a href="changelog.xhtml">Changelog</a></div>
|
<div><a href="changelog">Changelog</a></div>
|
||||||
<div><a href="blog.xhtml">Blog</a></div>
|
<div><a href="blog">Blog</a></div>
|
||||||
<div><a href="contact.xhtml">Contact</a></div>
|
<div><a href="contact">Contact</a></div>
|
||||||
<div><a href="directory.xhtml">Directory</a></div>
|
<div><a href="directory">Directory</a></div>
|
||||||
<div><a href="key.xhtml">Key</a></div>
|
<div><a href="key">Key</a></div>
|
||||||
<div class="sitemap"><a href="sitemap.xhtml">Sitemap</a></div>
|
<div class="sitemap"><a href="sitemap">Sitemap</a></div>
|
||||||
</nav>
|
</nav>
|
||||||
<h1>Blog</h1>
|
<h1>Blog</h1>
|
||||||
<nav id="toc">
|
<nav id="toc">
|
||||||
@ -36,30 +36,30 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><b>2024-07-05</b></li>
|
<li><b>2024-07-05</b></li>
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
<li><b>2024-06-04</b></li>
|
<li><b>2024-06-04</b></li>
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
<li><b>2022-12-20</b></li>
|
<li><b>2022-12-20</b></li>
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
<li><b>2022-06-30</b></li>
|
<li><b>2022-06-30</b></li>
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
<li><b>2022-01-29</b></li>
|
<li><b>2022-01-29</b></li>
|
||||||
<ul>
|
<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>
|
</ul>
|
||||||
<li><b>2022-01-27</b></li>
|
<li><b>2022-01-27</b></li>
|
||||||
<ul>
|
<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>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="sitemap-small"><a href="sitemap.xhtml">Sitemap</a></div>
|
<div class="sitemap-small"><a href="sitemap">Sitemap</a></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user