Compare commits

...
2 Commits
Author SHA1 Message Date
valknar 5b04da2a11 feat: new post 2026-04-14 16:26:30 +02:00
valknarandClaude Sonnet 4.6 16352b9152 feat: limit homepage latest posts to 4, fix total post count in CTA
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-14 16:26:10 +02:00
5 changed files with 18 additions and 3 deletions
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 MiB

+15
View File
@@ -0,0 +1,15 @@
---
title: "Neon Zen Platter"
description: "A macro, cinematic masterpiece of hyper-futuristic sushi, featuring iridescent sashimi slices that shimmer with a pearlescent, oil-slick sheen. The nigiri rests on beds of 'galaxy rice'—each grain a translucent, glowing violet orb. Gravity-defying soy sauce droplets hover in mid-air like liquid obsidian spheres. The dish is garnished with holographic gold leaf and bioluminescent micro-greens that emit a soft cyan pulse. The background is a soft-focus bokeh of a rainy Neo-Tokyo at night, casting deep teals and electric magentas across the chrome serving platter."
date: 2026-04-14
author: "valknar"
featured: false
categories:
- Food
tags:
- Futuristic
- Sushi
- Neo-Tokyo
- Vaporwave
---
+3 -3
View File
@@ -117,14 +117,14 @@
</div>
<div class="relative z-10 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-5">
{{- range first 8 $latest -}}
{{- range first 4 $latest -}}
{{- partial "post-card.html" . -}}
{{- end -}}
</div>
{{- if gt (len $latest) 8 -}}
{{- if gt (len $latest) 4 -}}
<div class="relative z-10 mt-14 text-center">
<a href="/posts/" class="btn btn-outline">View All {{ len $latest }} Posts {{ partial "icon.html" "arrow-right" }}</a>
<a href="/posts/" class="btn btn-outline">View All {{ len $posts }} Posts {{ partial "icon.html" "arrow-right" }}</a>
</div>
{{- end -}}