Rename paige-row-narrow to paige-row-short

This commit is contained in:
Will Faught
2025-02-07 00:14:48 -08:00
parent dfaf3957b1
commit 064e5227fe
5 changed files with 22 additions and 22 deletions

View File

@@ -26,13 +26,13 @@
{{ if or $edit $history }}
<div id="paige-file">
{{ with $edit }}
<div class="paige-row-narrow text-center text-secondary" id="paige-edit">
<div class="paige-row-short text-center text-secondary" id="paige-edit">
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_this_page" }}</a>
</div>
{{ end }}
{{ with $history }}
<div class="paige-row-narrow text-center text-secondary" id="paige-history">
<div class="paige-row-short text-center text-secondary" id="paige-history">
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_history" }}</a>
</div>
{{ end }}
@@ -42,11 +42,11 @@
{{ if or $next $prev }}
<div id="paige-siblings">
{{ with $prev }}
<div class="paige-row-narrow text-center text-secondary" id="paige-next"><a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a> &rsaquo;</div>
<div class="paige-row-short text-center text-secondary" id="paige-next"><a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a> &rsaquo;</div>
{{ end }}
{{ with $next }}
<div class="paige-row-narrow text-center text-secondary" id="paige-prev">&lsaquo; <a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a></div>
<div class="paige-row-short text-center text-secondary" id="paige-prev">&lsaquo; <a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a></div>
{{ end }}
</div>
{{ end }}