diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-22 12:07:33 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-22 12:07:33 +0200 |
| commit | 44bfb1ebf01815936c658a8fc6424c1a351f1069 (patch) | |
| tree | 3729260e669ddcddbd1d91ab3cdc931f89794cc8 /themes/danix-xyz-hacker | |
| parent | 23b9eeba2382ce42cf3217ff3e419e8b5aa7ab12 (diff) | |
| download | danixxyz-44bfb1ebf01815936c658a8fc6424c1a351f1069.tar.gz danixxyz-44bfb1ebf01815936c658a8fc6424c1a351f1069.zip | |
fix: repository list page now uses content-grid for glow/border consistency
Replaced ad-hoc max-w-5xl bg-bg wrapper with the standard max-w-7xl article + content-grid div pattern used by all other pages (singles, is/list). content-grid CSS class provides the soft purple glow, border, and background that block the matrix rain canvas.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'themes/danix-xyz-hacker')
| -rw-r--r-- | themes/danix-xyz-hacker/layouts/repository/list.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/danix-xyz-hacker/layouts/repository/list.html b/themes/danix-xyz-hacker/layouts/repository/list.html index 0ce88c1..ce2c305 100644 --- a/themes/danix-xyz-hacker/layouts/repository/list.html +++ b/themes/danix-xyz-hacker/layouts/repository/list.html @@ -1,5 +1,6 @@ {{ define "main" }} -<div class="mx-auto px-4 py-12 max-w-5xl bg-bg"> +<article class="mx-auto px-4 py-12 max-w-7xl"> + <div class="content-grid"> <!-- Breadcrumb --> {{ partial "breadcrumb.html" . }} @@ -71,5 +72,6 @@ {{ end }} </div> </section> -</div> + </div> +</article> {{ end }} |
