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

14 lines
315 B
HTML
Raw Normal View History

2018-03-01 01:38:59 +00:00
<section class="container centered">
<div class="about">
<h1>{{ .Site.Params.author }}</h1>
<h2>{{ .Site.Params.info }}</h2>
{{ with .Site.Params.social }}
2018-03-01 01:38:59 +00:00
<ul>
{{ range sort .}}
2018-03-01 01:38:59 +00:00
<li><a href="{{ .url }}">{{ .name }}</a></li>
{{ end }}
</ul>
{{ end }}
2018-03-01 01:38:59 +00:00
</div>
</section>