Files
roux/layouts/partials/footer.html
T
valknar ed1cffef34 Remove all Paris branding references
Journal is online-only; removed "gathered in Paris" from footer and
imprint, "· Paris" from logo tagline and 404 colophon, and the Paris
span from the header nav. Post content (paris-bridge-crimson-dusk)
left untouched as that refers to the photograph subject.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 19:45:49 +02:00

46 lines
2.0 KiB
HTML

<footer class="border-t border-[var(--rule)] px-[var(--pad)] pt-9 pb-14
grid gap-10 font-sans text-[12px] leading-[1.5] text-ink-soft
[grid-template-columns:2fr_1fr_1fr_1fr]
max-[820px]:[grid-template-columns:1fr_1fr]">
{{/* ── Brand column ── */}}
<div>
<h2 class="font-display font-normal text-[clamp(48px,6vw,80px)] leading-[0.92] text-ink m-0 mb-[14px]">
R<em class="font-serif italic text-roux font-light">o</em>ux
</h2>
<p>A slow-publishing fashion journal. One hundred photographs at a time, printed and unprinted.</p>
</div>
{{/* ── Categories (top 5 by count) ── */}}
<div>
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Categories</h4>
{{- range first 5 $.Site.Taxonomies.categories.ByCount }}
{{- $tp := $.Site.GetPage (printf "/categories/%s" .Name) }}
{{- if $tp }}
<p><a class="hover:text-ink" href="{{ $tp.RelPermalink }}">{{ $tp.Title }}</a></p>
{{- end }}
{{- end }}
</div>
{{/* ── Tags (top 5 by count) ── */}}
<div>
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Index</h4>
{{- range first 5 $.Site.Taxonomies.tags.ByCount }}
{{- $tp := $.Site.GetPage (printf "/tags/%s" .Name) }}
{{- if $tp }}
<p><a class="hover:text-ink" href="{{ $tp.RelPermalink }}">{{ $tp.Title }}</a></p>
{{- end }}
{{- end }}
</div>
{{/* ── Colophon ── */}}
<div>
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Colophon</h4>
<p>Set in Italiana &amp; Cormorant Garamond, with Outfit for typographic furniture. © Roux MMXXVI.</p>
<p class="mt-[14px] text-ink">Press
<span class="border border-[var(--rule)] px-[6px] py-[3px] rounded-[3px] font-mono text-[10px]">⌘K</span>
from anywhere to search.
</p>
</div>
</footer>