Files
blog/themes/plain/layouts/index.html
2026-03-25 15:14:49 +09:00

12 lines
306 B
HTML

{{ define "main" }}
<div class="home">
<h1>{{ .Site.Params.author }}</h1>
{{ with .Site.Params.description }}<p class="desc">{{ . }}</p>{{ end }}
<ul>
{{ range .Site.Params.homeLinks }}
<li><a href="{{ .url }}">{{ .label }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}