Files
blog/themes/plain/layouts/index.html

13 lines
480 B
HTML
Raw Normal View History

2026-03-25 15:14:49 +09:00
{{ define "main" }}
<div class="home">
2026-03-25 15:45:57 +09:00
<div class="prompt">
<span class="user">{{ .Site.Params.author | lower }}</span><span class="at">@</span><span class="host">{{ replace .Site.BaseURL "https://" "" }}</span><span class="sep">:</span><span class="path">~</span><span class="dollar">$</span> ls
</div>
<nav class="home-nav">
2026-03-25 15:14:49 +09:00
{{ range .Site.Params.homeLinks }}
2026-03-25 15:45:57 +09:00
<a href="{{ .url }}">{{ .label }}</a>
2026-03-25 15:14:49 +09:00
{{ end }}
2026-03-25 15:45:57 +09:00
</nav>
2026-03-25 15:14:49 +09:00
</div>
{{ end }}