2026-05-18 18:06:55 +02:00
|
|
|
<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]">
|
2026-05-18 19:39:42 +02:00
|
|
|
|
|
|
|
|
{{/* ── Brand column ── */}}
|
2026-05-18 16:27:47 +02:00
|
|
|
<div>
|
2026-05-18 19:43:20 +02:00
|
|
|
<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>
|
2026-05-18 19:45:49 +02:00
|
|
|
<p>A slow-publishing fashion journal. One hundred photographs at a time, printed and unprinted.</p>
|
2026-05-18 16:27:47 +02:00
|
|
|
</div>
|
2026-05-18 19:39:42 +02:00
|
|
|
|
|
|
|
|
{{/* ── Categories (top 5 by count) ── */}}
|
2026-05-18 16:27:47 +02:00
|
|
|
<div>
|
2026-05-18 18:06:55 +02:00
|
|
|
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Categories</h4>
|
2026-05-18 19:39:42 +02:00
|
|
|
{{- 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 }}
|
2026-05-18 16:27:47 +02:00
|
|
|
</div>
|
2026-05-18 19:39:42 +02:00
|
|
|
|
|
|
|
|
{{/* ── Tags (top 5 by count) ── */}}
|
2026-05-18 16:27:47 +02:00
|
|
|
<div>
|
2026-05-18 18:06:55 +02:00
|
|
|
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Index</h4>
|
2026-05-18 19:39:42 +02:00
|
|
|
{{- 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 }}
|
2026-05-18 16:27:47 +02:00
|
|
|
</div>
|
2026-05-18 19:39:42 +02:00
|
|
|
|
|
|
|
|
{{/* ── Colophon ── */}}
|
2026-05-18 16:27:47 +02:00
|
|
|
<div>
|
2026-05-18 18:06:55 +02:00
|
|
|
<h4 class="font-sans font-medium text-[10px] leading-none tracking-[.22em] uppercase text-ink m-0 mb-[14px]">Colophon</h4>
|
2026-05-18 16:27:47 +02:00
|
|
|
<p>Set in Italiana & Cormorant Garamond, with Outfit for typographic furniture. © Roux MMXXVI.</p>
|
2026-05-18 18:06:55 +02:00
|
|
|
<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>
|
2026-05-18 16:27:47 +02:00
|
|
|
</div>
|
|
|
|
|
</footer>
|