Skip to content
Snippets Groups Projects
Verified Commit cfdd7766 authored by anarsec's avatar anarsec
Browse files

absolute hrefs for categories/tags

parent 74a62a97
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,7 @@ Any Cwtch user can turn the app on their phone or computer into an untrusted ser ...@@ -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 ...@@ -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>
......
...@@ -81,7 +81,7 @@ ...@@ -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 @@ ...@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment