Skip to content

Commit

Permalink
πŸ› add underline for backlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
mickm3n committed Jul 24, 2024
1 parent 6000930 commit 9719cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h2>ζεŠζœ¬η―‡ηš„ζ–‡η« </h2>
{% for backlink in page.backlinks %}
{% if backlink.permalink != page.permalink %}
<li>
<a class="no-underline" href="{{ backlink.permalink }}">{{ backlink.title }}</a>
<a href="{{ backlink.permalink }}">{{ backlink.title }}</a>
</li>
{% endif %}
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion templates/reading-note.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h2>ζεŠζœ¬η―‡ηš„ζ–‡η« </h2>
{% for backlink in page.backlinks %}
{% if backlink.permalink != page.permalink %}
<li>
<a class="no-underline" href="{{ backlink.permalink }}">{{ backlink.title }}</a>
<a href="{{ backlink.permalink }}">{{ backlink.title }}</a>
</li>
{% endif %}
{% endfor %}
Expand Down

0 comments on commit 9719cd1

Please sign in to comment.