add title to header icons

Amolith created

Change summary

_includes/header.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

_includes/header.html 🔗

@@ -9,21 +9,21 @@
         </ul>
     </div>
     <ul class="social-links">
-        <a href="/feed.xml" class="social-linkes__entry" target="_blank">
+        <a href="/feed.xml" title="The RSS feed for my blog"class="social-linkes__entry" target="_blank">
             <i class="fa fa-rss-square"></i>
         </a>
         {% if site.author.mastodon %}
-        <a rel="me" href="https://fosstodon.org/@{{ site.author.mastodon }}" class="social-links__entry" target="_blank">
+        <a rel="me" title="Mastodon, a decentralised social network" href="https://fosstodon.org/@{{ site.author.mastodon }}" class="social-links__entry" target="_blank">
             <i class="fa fa-mastodon"></i>
         </a>
         {% endif %}
         {% if site.author.telegram %}
-        <a href="https://t.me/{{ site.author.telegram }}" class="social-links__entry" target="_blank">
+        <a href="https://t.me/{{ site.author.telegram }}" title="Message me on Telegram"class="social-links__entry" target="_blank">
             <i class="fa fa-telegram"></i>
         </a>
         {% endif %}
         {% if site.author.email %}
-        <a href="mailto:{{ site.author.email }}" class="social-links__entry" target="_blank">
+        <a href="mailto:{{ site.author.email }}" title="Send me a GPG-encrypted email" class="social-links__entry" target="_blank">
             <i class="fa fa-envelope"></i>
         </a>
         {% endif %}