2018-09-23 07:11:35 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
{{- partial "head.html" . -}}
|
|
|
|
<body>
|
|
|
|
<div class="profile">
|
|
|
|
<div class="profile-body">
|
|
|
|
<div class="avatar">
|
2018-09-24 10:39:32 -04:00
|
|
|
<img class="avatar-mask" src="/img/{{ .Site.Params.avatar }}">
|
|
|
|
<img src="/img/avatar-border.svg">
|
2018-09-23 07:11:35 -04:00
|
|
|
</div>
|
|
|
|
<h1 class="author">{{ .Site.Params.Author }}</h1>
|
|
|
|
<p>
|
|
|
|
{{ .Site.Params.discription }}
|
|
|
|
</p>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
2018-09-24 10:55:24 -04:00
|
|
|
{{ range .Site.Menus.main }}
|
|
|
|
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
2018-09-23 07:11:35 -04:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{- partial "footer.html" . -}}
|
|
|
|
</body>
|
|
|
|
</html>
|