Files
web/themes/minimal-black/layouts/partials/home/now.html
2026-03-23 18:35:59 +01:00

29 lines
774 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{- $hero := .Site.Params.hero -}}
{{- $home := .Site.Params.home -}}
{{ if $home.showNowSection }}
<div class="space-y-4">
<div class="space-y-3">
<h2 class="heading-section">{{ default "Now" $hero.nowLabel }}</h2>
<div class="card card-pad text-xs text-muted">
{{ with $hero.nowIntro }}
<p class="mb-2">{{ . }}</p>
{{ end }}
{{ with $hero.now }}
<ul class="list-disc space-y-1 pl-4">
{{ range . }}
<li>{{ . }}</li>
{{ end }}
</ul>
{{ else }}
<p>
Add a <code>hero.now</code> list in your config to describe what youre
focused on right now.
</p>
{{ end }}
</div>
</div>
</div>
{{ end }}