hugo-coder-fork/layouts/partials/home.html

14 lines
315 B
HTML

<section class="container centered">
<div class="about">
<h1>{{ .Site.Params.author }}</h1>
<h2>{{ .Site.Params.info }}</h2>
{{ with .Site.Params.social }}
<ul>
{{ range sort .}}
<li><a href="{{ .url }}">{{ .name }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
</section>