absolute hrefs for categories/tags

This commit is contained in:
anarsec 2023-06-27 22:04:00 +00:00
parent 74a62a97af
commit cfdd7766b6
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -53,6 +53,7 @@ Any Cwtch user can turn the app on their phone or computer into an untrusted ser
<details> <details>
<summary><strong>Cwtch Installation on Tails</strong></summary> <summary><strong>Cwtch Installation on Tails</strong></summary>
<br> <br>
<p>Cwtch is still beta - support for Tails is very new and not yet thoroughly tested.</p>
<ul> <ul>
<li>Start Tails with an Adminstration Password.</li> <li>Start Tails with an Adminstration Password.</li>
<li>Download <a href="https://cwtch.im/download/#linux">Cwtch for Linux</a> using Tor Browser</li> <li>Download <a href="https://cwtch.im/download/#linux">Cwtch for Linux</a> using Tor Browser</li>
@ -73,9 +74,12 @@ Any Cwtch user can turn the app on their phone or computer into an untrusted ser
<li><code>exec env CWTCH_TAILS=true LD_LIBRARY_PATH=~/.local/lib/cwtch/:~/.local/lib/cwtch/Tor ~/.local/lib/cwtch/cwtch</code></li> <li><code>exec env CWTCH_TAILS=true LD_LIBRARY_PATH=~/.local/lib/cwtch/:~/.local/lib/cwtch/Tor ~/.local/lib/cwtch/cwtch</code></li>
</ul> </ul>
</li> </li>
<li>Cwtch must be re-installed every session you need to use it. Backup <code>`$HOME/.cwtch`</code> to the personal data LUKS USB, and copy it back into <code>$HOME/</code> the next time you install Cwtch.</li> <li>How you use Cwtch depends on whether you have enabled Persistent Storage: <ul>
<li>Updates must be made manually - back up your profile first.</li> <li>With Persistent Storage disabled, Cwtch must be re-installed every session you need to use it. Backup <code>`/home/amnesia/.cwtch/`</code> to the personal data LUKS USB, and copy it back into <code>/home/amnesia/</code> the next time you install Cwtch. </li>
<li>With Persistent Storage enabled and unlocked, in Terminal run <code>sudo sed -i '$ a /home/amnesia/.cwtch source=cwtch' /live/persistence/TailsData_unlocked/persistence.conf</code></li>
</ul> </ul>
</li>
<li>Updates must be made manually - back up your profile first.</li>
<br> <br>
</details> </details>

View file

@ -81,7 +81,7 @@
<p> <p>
Categories: Categories:
{% for category in categories %} {% for category in categories %}
<a class="has-text-info-dark has-text-weight-semibold" href="{{ get_taxonomy_url(kind="categories", name=category) }}"> <a class="has-text-info-dark has-text-weight-semibold" href="/categories/{{category | lower}}">
<span class="icon-text"> <span class="icon-text">
<span class="icon"> <span class="icon">
<i class="fas fa-cube"></i> <i class="fas fa-cube"></i>
@ -97,7 +97,7 @@
<p> <p>
Tags: Tags:
{% for tag in tags %} {% for tag in tags %}
<a class="has-text-info-dark has-text-weight-semibold" href="{{ get_taxonomy_url(kind='tags', name=tag) }}"> <a class="has-text-info-dark has-text-weight-semibold" href="/tags/{{tag | lower}}">
<span class="icon-text"> <span class="icon-text">
<span class="icon"> <span class="icon">
<i class="fas fa-tag"></i> <i class="fas fa-tag"></i>