Downloaded theme

This commit is contained in:
2026-03-23 18:35:59 +01:00
parent 326fab0e42
commit d091efd432
86 changed files with 14512 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{{- $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 }}