2018-03-01 01:38:59 +00:00
|
|
|
<section class="container centered">
|
|
|
|
<div class="about">
|
2018-07-05 13:06:04 +00:00
|
|
|
{{ with .Site.Params.avatarurl }}
|
2019-01-07 13:16:38 +00:00
|
|
|
<div class="avatar"><img src="{{ . | relURL }}" alt="avatar"></div>
|
2018-07-05 13:06:04 +00:00
|
|
|
{{ end }}
|
2018-03-01 01:38:59 +00:00
|
|
|
<h1>{{ .Site.Params.author }}</h1>
|
|
|
|
<h2>{{ .Site.Params.info }}</h2>
|
2018-03-23 17:28:38 +00:00
|
|
|
{{ with .Site.Params.social }}
|
2018-03-01 01:38:59 +00:00
|
|
|
<ul>
|
2018-03-23 17:28:38 +00:00
|
|
|
{{ range sort .}}
|
2018-08-22 11:36:14 +00:00
|
|
|
{{ if .icon }}
|
2018-12-20 16:21:11 +00:00
|
|
|
<li>
|
|
|
|
<a href="{{ .url }}" aria-label="{{ .name }}">
|
|
|
|
<i class="{{ .icon }}" aria-hidden></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
2018-08-22 11:36:14 +00:00
|
|
|
{{ else }}
|
2018-12-20 16:21:11 +00:00
|
|
|
<li>
|
|
|
|
<a href="{{ .url }}" aria-label="{{ .name }}">{{ .name }}</a>
|
|
|
|
</li>
|
2018-08-22 11:36:14 +00:00
|
|
|
{{ end }}
|
2018-03-01 01:38:59 +00:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2018-03-23 17:28:38 +00:00
|
|
|
{{ end }}
|
2018-03-01 01:38:59 +00:00
|
|
|
</div>
|
|
|
|
</section>
|