2025-06-09 11:45:49 -06:00

31 lines
840 B
HTML

{{ define "main" }}
<div id="page-header">
<h1>{{ .Title }}</h1>
{{ if .Params.subtitle }}
<span class="subtitle">{{ .Params.subtitle }}</span>
{{ end }}
</div>
<section>
{{ .Content }}
</section>
{{ $pages := shuffle (where site.RegularPages "Section" "tools") | first 20 }}
<section>
<h2>Featured Tools</h2>
{{ range $pages }}
<article class="tool-card">
<h3>
{{ .Title }}
{{ if .Params.subtitle }}
<span class="subtitle">{{ .Params.subtitle }}</span>
{{ end }}
</h3>
<p>{{ .Content | truncate 250 }}</p>
<a href="{{ .RelPermalink }}" style="position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;text-indent:-9999px;overflow:hidden;">{{ .Title }}</a>
</article>
{{ end }}
</section>
{{ end }}