Add page, site prefixes to all CSS names

This commit is contained in:
Will Faught
2025-02-08 22:12:05 -08:00
parent 03208bde58
commit aabb52bd64
11 changed files with 141 additions and 136 deletions

View File

@@ -22,15 +22,15 @@
{{ partial "paige/func-include.html" (dict "name" "page-footer-first%s.html" "page" $page) }}
{{ if or $edit $history }}
<div id="paige-file">
<div id="paige-page-file">
{{ with $edit }}
<div class="paige-row-short text-center text-secondary" id="paige-edit">
<div class="paige-row-short text-center text-secondary" id="paige-page-edit">
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_this_page" }}</a>
</div>
{{ end }}
{{ with $history }}
<div class="paige-row-short text-center text-secondary" id="paige-history">
<div class="paige-row-short text-center text-secondary" id="paige-page-history">
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_history" }}</a>
</div>
{{ end }}
@@ -38,13 +38,13 @@
{{ end }}
{{ if or $next $prev }}
<div id="paige-siblings">
<div id="paige-page-siblings">
{{ with $prev }}
<div class="paige-row-short 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-page-next"><a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a> &rsaquo;</div>
{{ end }}
{{ with $next }}
<div class="paige-row-short 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-page-prev">&lsaquo; <a class="link-secondary" href="{{ .Permalink }}">{{ .LinkTitle }}</a></div>
{{ end }}
</div>
{{ end }}