Renamed help to about

This commit is contained in:
HackerNCoder 2024-09-18 18:33:13 +02:00
parent 01108a6c2d
commit 14e7c39ac6
2 changed files with 6 additions and 4 deletions

View file

@ -1,8 +1,10 @@
title: Help title: About
--- ---
body: body:
The book titles on the home page are links to book pages! It may not be clear, since they are coloured red and don't have any underline, but having them blue with all the other links on the same line became too much. The book titles on the home page are links to pages! It may not be clear, since they are coloured red and don't have any underline, but having them blue with all the other links on the same line was too much (there used to be many more links than there is now). Now I just keep it since it looks better.
 
On each book page, there are up to 3 parts: On each book page, there are up to 3 parts:
@ -22,4 +24,4 @@ Further, a book page may contain "Length:". This is an attempt by me to categori
   
I added the Read online section to make this website a repository, such that one could link to a book here, and people got multiple options for how to read a book: EPUB, usually the source would be a PDF (although unfortunately not always), and online in browser. I added the Read online section to make this website a repository, such that one could link to a book here, and people got multiple options for how to read a book: EPUB, usually the source would be a PDF (although unfortunately not always), and online in browser.

View file

@ -3,7 +3,7 @@
<li{% if this._path == '/' %} class="active"{% endif%}><a href="{{ '/'|url }}">Home</a></li> <li{% if this._path == '/' %} class="active"{% endif%}><a href="{{ '/'|url }}">Home</a></li>
{% for href, title in [ {% for href, title in [
['/wishes', 'Wishes'], ['/wishes', 'Wishes'],
['/help', 'Help'], ['/about', 'About'],
] %} ] %}
<li{% if this.is_child_of(href) %} class="active"{% endif %}><a href="{{ href|url }}">{{ title }}</a></li> <li{% if this.is_child_of(href) %} class="active"{% endif %}><a href="{{ href|url }}">{{ title }}</a></li>
{% endfor %} {% endfor %}