Skip to content

Commit

Permalink
[base.html] Alter lis to ps in link list (#19)
Browse files Browse the repository at this point in the history
Convert each list item to a paragraph in order to separate them visibly.
  • Loading branch information
Olf0 authored Mar 21, 2024
1 parent 0d6d16b commit 2e7dbb8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions chumweb/www/views/layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ <h4>SailfishOS:Chum</h4>
</div>
</form>
{% endblock search %}
<ul class="section-menu link-list">
<li><a href="{{ "index.html" | to_public_url }}">Home</a></li>
<li><a href="{{ "about.html" | to_public_url }}">About</a></li>
<li><a href="{{ "apps/index-a.html" | to_public_url }}">All apps</a></li>
<li><a href="{{ "pkgs/index-a.html" | to_public_url }}">All packages</a></li>
<li><a href="{{ "apps/index-category-accessibility.html" | to_public_url }}">All apps by category</a></li>
<li><a href="{{ "pkgs/index-category-accessibility.html" | to_public_url }}">All packages by category</a></li>
</ul>
<div class="section-menu link-list">
<p><a href="{{ "index.html" | to_public_url }}">Home</a></p>
<p><a href="{{ "about.html" | to_public_url }}">About</a></p>
<p><a href="{{ "apps/index-a.html" | to_public_url }}">All apps</a></p>
<p><a href="{{ "pkgs/index-a.html" | to_public_url }}">All packages</a></p>
<p><a href="{{ "apps/index-category-accessibility.html" | to_public_url }}">All apps by category</a></p>
<p><a href="{{ "pkgs/index-category-accessibility.html" | to_public_url }}">All packages by category</a></p>
</div>
</nav>
<footer class="section-site-footer section-secondary">
<p>
Expand Down

0 comments on commit 2e7dbb8

Please sign in to comment.