]> danix's work - danix.xyz-2.git/commitdiff
fix: repository list page now uses content-grid for glow/border consistency
authorDanilo M. <redacted>
Wed, 22 Apr 2026 10:07:33 +0000 (12:07 +0200)
committerDanilo M. <redacted>
Wed, 22 Apr 2026 10:07:33 +0000 (12:07 +0200)
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 <redacted>
themes/danix-xyz-hacker/layouts/repository/list.html

index 0ce88c179bb2ec7a0ae15fe8a0258ffb9b5bcfbd..ce2c3050a326f45c73d6c8c9abb717535163d25e 100644 (file)
@@ -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 }}