chore: link titles

This commit is contained in:
Cory Dransfeldt 2024-05-29 13:54:28 -07:00
parent c038b42341
commit 451ab5dcc9
No known key found for this signature in database
24 changed files with 31 additions and 31 deletions

View file

@ -5,7 +5,7 @@ layout: default
{%- capture currentYear -%}{% currentYear %}{%- endcapture -%}
{%- assign yearString = year | append: '' -%}
{%- assign currentYearString = currentYear | append: '' -%}
<a class="back-link-header link-icon flex-centered" href="/books">{% tablericon "arrow-left" "Go back" %} Go back</a>
<a class="back-link-header link-icon flex-centered" href="/books" title="Go back to the books index page">{% tablericon "arrow-left" "Go back" %} Go back</a>
<h2 class="page-header">{{ title }}</h2>
{{ content }}
{% if yearString == currentYearString %}

View file

@ -6,14 +6,14 @@
{% for album in albumReleases %}
<li>
<strong>{{ album.date }}: </strong>
<a href="{{ album.url}}" title="{{ album.title | escape}} by {{ album.artist | escape}}">
<a href="{{ album.url}}" title="Learn more about {{ album.title | escape}} by {{ album.artist | escape}}">
{{ album.title }}
</a>
<span> by </span>
<a href="{{ album.artist_url }}">
<a href="{{ album.artist_url }}" title="Learn more about {{ album.artist | escape }}">
{{ album.artist }}
</a>
<span> • <a href="https://coryd.dev/music/genres/{{ album.genre | slugify | downcase }}">{{ album.genre }}</a></span>
<span> • <a href="https://coryd.dev/music/genres/{{ album.genre | slugify | downcase }}" title="Learn more about {{ album.genre | escape }}">{{ album.genre }}</a></span>
</li>
{% endfor %}
</ul>