mirror of
https://github.com/morgan9e/blog
synced 2026-04-13 15:54:06 +09:00
12 lines
306 B
HTML
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 }}
|