aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Johnson <mail@nicholasjohnson.ch>2025-02-06 00:00:00 +0000
committerNicholas Johnson <mail@nicholasjohnson.ch>2025-02-06 00:00:00 +0000
commit7c9835d7c4413c32a091895efd34c7db56ef4c8818c89dd9e27d2d5cacfc130e (patch)
treee5da4a2d24c58fb5ddeff27a8015bb053e6d76607f98d41cffccb6ecc5415b3e
parent6ac2fc6523a8038c2b7acd268d047c3e33f5939578c1ff2e7fbdd526ba422335 (diff)
downloadhugo-theme-journal-7c9835d7c4413c32a091895efd34c7db56ef4c8818c89dd9e27d2d5cacfc130e.tar.gz
hugo-theme-journal-7c9835d7c4413c32a091895efd34c7db56ef4c8818c89dd9e27d2d5cacfc130e.zip
Move emojis outside link text, where they belong
-rw-r--r--layouts/taxonomy/taxonomy.html2
-rw-r--r--layouts/term/term.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/taxonomy/taxonomy.html b/layouts/taxonomy/taxonomy.html
index 2842beb..86d7f89 100644
--- a/layouts/taxonomy/taxonomy.html
+++ b/layouts/taxonomy/taxonomy.html
@@ -5,7 +5,7 @@
<main>
<h1>{{ .Type | humanize }}</h1>
<h2>{{ i18n "feeds" }}</h2>
- <p><a class="link link--internal" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer"> {{ emojify ":link:" }}&nbsp;{{ i18n "atomFeed" }}</a></p>
+ <p>{{ emojify ":link:" }}&nbsp;<a class="link link--internal" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer">{{ i18n "atomFeed" }}</a></p>
<h2>{{ i18n "list" }}</h2>
<ul class="list">
{{- range .Data.Pages }}
diff --git a/layouts/term/term.html b/layouts/term/term.html
index 78e5542..3b268dd 100644
--- a/layouts/term/term.html
+++ b/layouts/term/term.html
@@ -5,7 +5,7 @@
<main>
<h1>{{ .Type | singularize | humanize }} "{{ .Title }}"</h1>
<h2>{{ i18n "feeds" }}</h2>
- <p><a class="link link--internal" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer"> {{ emojify ":link:" }}&nbsp;{{ i18n "atomFeed" }}</a></p>
+ <p>{{ emojify ":link:" }}&nbsp;<a class="link link--internal" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer">{{ i18n "atomFeed" }}</a></p>
<h2>{{ i18n "journalEntries" }}</h2>
{{- range .Data.Pages.ByPublishDate.Reverse }}
{{ partial "metadata.html" . -}}