commit 52f712f2f708b6141797a4f3e5e15536b70683fc
parent ae5eaf8108da05285c951f3abcfe312063b70e65
Author: Wim Dupont <wim@wimdupont.com>
Date: Wed, 20 Dec 2023 17:17:13 +0100
title attributes
Former-commit-id: ee0d6f189bc86052abf08348823834befefa8c0a
Diffstat:
3 files changed, 18 insertions(+), 16 deletions(-)
diff --git a/src/main/resources/templates/books.html b/src/main/resources/templates/books.html
@@ -16,16 +16,18 @@
<p th:text="${bookEntry.key}">keyvalue</p>
<table>
<tr th:each="book : ${bookEntry.value}">
- <td>
+ <td th:title="|${book.title} - ${book.author}|">
<a th:target="_blank"
th:href="@{https://openlibrary.org/isbn/{isbn}(isbn=${book.isbn})}"
- th:title="|${book.title} - ${book.author}|">
+ th:title="|Open Library (ISBN: ${book.isbn})|">
<span th:text="${book.title}"/>
<span th:if="${book.seriesWithNumber != null}"
class="series" th:text="${book.seriesWithNumber}"/>
</a>
</td>
- <td class="align-right" th:text="${book.author}"/>
+ <td class="align-right"
+ th:title="|${book.title} - ${book.author}|"
+ th:text="${book.author}"/>
</tr>
</table>
</th:block>
diff --git a/src/main/resources/templates/home.html b/src/main/resources/templates/home.html
@@ -11,7 +11,7 @@
<div th:insert="~{navigation}"/>
</header>
<p class="subheader" th:text="${affirmation.affirmation}"/>
- <img title="The Way Of Kings" src="/images/TheWayOfKings.png" width="960">
+ <img title="The Way of Kings" src="/images/TheWayOfKings.png" width="960">
<div class="source-credit">
Original art by Michael Whelan
</div>
diff --git a/src/main/resources/templates/links.html b/src/main/resources/templates/links.html
@@ -12,17 +12,17 @@
</header>
<p class="subheader">Links to websites on various topics</p>
<ul>
- <li><a target="_blank" th:href="@{{baseUrl}/swagger-ui.html(baseUrl=${@serverUrl})}">
+ <li><a target="_blank" th:href="@{{baseUrl}/swagger-ui.html(baseUrl=${@serverUrl})}" title="API">
<img alt="OpenAPI" title="API" src="/images/swagger.svg" width="12" height="12">
API</a>
- OpenAPI Swagger page with various operations for random number generation etc.
</li>
- <li><a target="_blank" href="https://gitlab.com/users/WimDupont/projects">
+ <li><a target="_blank" href="https://gitlab.com/users/WimDupont/projects" title="Git">
<img alt="Git" title="Git" src="/images/git.png" width="12" height="12">
Git</a>
- Git page with source code of this website and other projects
</li>
- <li><a href="/rss.xml">
+ <li><a href="/rss.xml" title="RSS Feed">
<img alt="RSS Feed" title="RSS Feed" src="/images/rssfeed.png" width="12" height="12">
RSS</a>
- Feed of the blog page
@@ -31,7 +31,7 @@
<h3>Privacy</h3>
<ul>
<li>
- <a target="_blank" href="https://privacyguides.org">Privacy Guides</a>
+ <a target="_blank" href="https://privacyguides.org" title="Privacy Guides">Privacy Guides</a>
- useful information about digital privacy including software recommendations and tips
</li>
</ul>
@@ -39,35 +39,35 @@
<h3>Software</h3>
<ul>
<li>
- <a target="_blank" href="https://www.fsf.org/">Free Software Foundation</a>
+ <a target="_blank" href="https://www.fsf.org/" title="Free Software Foundation">Free Software Foundation</a>
- FSF homepage, great resource to get to know Free/Libre Software and its importance
</li>
<li>
- <a target="_blank" href="https://www.vim.org/">Vim</a>
+ <a target="_blank" href="https://www.vim.org/" title="Vim">Vim</a>
- highly customizable and efficient text editor
</li>
<li>
- <a target="_blank" href="https://gnupg.org/">GnuPG</a>
+ <a target="_blank" href="https://gnupg.org/" title="GnuPG">GnuPG</a>
- encryption software suite using the OpenPGP standard
</li>
<li>
- <a target="_blank" href="https://www.passwordstore.org/">Password Store</a>
+ <a target="_blank" href="https://www.passwordstore.org/" title="Password Store">Password Store</a>
- simple and extensible password manager
</li>
<li>
- <a target="_blank" href="https://www.signal.org/">Signal</a>
+ <a target="_blank" href="https://www.signal.org/" title="Signal">Signal</a>
- encrypted instant messaging service
</li>
<li>
- <a target="_blank" href="https://newsboat.org/">Newsboat</a>
+ <a target="_blank" href="https://newsboat.org/" title="Newsboat">Newsboat</a>
- CLI RSS/Atom feed reader
</li>
<li>
- <a target="_blank" href="https://odysee.com/">Odysee</a>
+ <a target="_blank" href="https://odysee.com/" title="Odysee">Odysee</a>
- video-sharing website that uses the decentralized LBRY network
</li>
<li>
- <a target="_blank" href="https://invidious.io/">Invidious</a>
+ <a target="_blank" href="https://invidious.io/" title="Invidious">Invidious</a>
- privacy focused open software alternative front-end to YouTube
</li>
</ul>