aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2024-03-08 14:01:03 -0500
committertdro <tdro@noreply.example.com>2024-03-08 14:01:03 -0500
commit4e74a82ddfc1ad27d58295e9bae4f8e5ab5bb604 (patch)
tree79e751fab82bae60989597b015cccaa58645ecee /themes/default/layouts
parent946aca93fefc09be2a613bff0cd6f57b25652177 (diff)
downloadcanory-4e74a82ddfc1ad27d58295e9bae4f8e5ab5bb604.tar.gz
canory-4e74a82ddfc1ad27d58295e9bae4f8e5ab5bb604.tar.bz2
canory-4e74a82ddfc1ad27d58295e9bae4f8e5ab5bb604.zip
themes/default/layouts/_default/section.following: Follow -> Feeds
Diffstat (limited to 'themes/default/layouts')
-rw-r--r--themes/default/layouts/_default/section.following.html2
-rw-r--r--themes/default/layouts/partials/author-card.html2
-rw-r--r--themes/default/layouts/partials/pagination.html8
3 files changed, 6 insertions, 6 deletions
diff --git a/themes/default/layouts/_default/section.following.html b/themes/default/layouts/_default/section.following.html
index eb74049..2bfcc2e 100644
--- a/themes/default/layouts/_default/section.following.html
+++ b/themes/default/layouts/_default/section.following.html
@@ -65,7 +65,7 @@
title="Follow {{ $distinct.FeedName }}"
href="{{ $href }}">
{{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/rss.svg")) }}
- <header>Follow</header>
+ <span>Feed</span>
</a>
</micro-card>
</micro-author>
diff --git a/themes/default/layouts/partials/author-card.html b/themes/default/layouts/partials/author-card.html
index 65228cc..561fef3 100644
--- a/themes/default/layouts/partials/author-card.html
+++ b/themes/default/layouts/partials/author-card.html
@@ -75,7 +75,7 @@
<p>{{ .Data.description | markdownify | plainify | htmlUnescape | truncate 60 "..." }}</p>
<a title="Follow with RSS Reader" href="{{ "" | absURL }}/{{ .Data.user }}/rss.xml">
{{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/rss.svg")) }}
- <header>Follow</header>
+ <span>Feed</span>
</a>
</micro-card>
</micro-author>
diff --git a/themes/default/layouts/partials/pagination.html b/themes/default/layouts/partials/pagination.html
index 3e5acd8..e64bfcf 100644
--- a/themes/default/layouts/partials/pagination.html
+++ b/themes/default/layouts/partials/pagination.html
@@ -30,21 +30,21 @@
<nav{{ if le .TotalPages 1 }} hidden="" {{ end }} data-type="pagination">
<a rel="first" href="{{ $firstHref }}" title="{{ $firstTitle }}" >
- <header>{{ $firstTitle }}</header>
+ <span>{{ $firstTitle }}</span>
</a>
<a rel="prev" href="{{ $prevHref }}" title="{{ $prevTitle }}">
{{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/arrow-left.svg")) }}
- <header>{{ $prevTitle }}</header>
+ <span>{{ $prevTitle }}</span>
</a>
<a rel="next" href="{{ $nextHref }}" title="{{ $nextTitle }}">
- <header>{{ $nextTitle }}</header>
+ <span>{{ $nextTitle }}</span>
{{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/arrow-right.svg")) }}
</a>
<a rel="last" href="{{ $lastHref }}" title="{{ $lastTitle }}" data-count="{{ .TotalPages }}">
- <header>{{ $lastTitle }}</header>
+ <span>{{ $lastTitle }}</span>
</a>
</nav>
{{- end -}}