website-theme/layouts/index.html

33 lines
947 B
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
<!DOCTYPE html>
<html>
2019-03-23 03:18:03 -04:00
{{- partial "head.html" . -}}
<body>
<div id="profileContainer">
<div id="profile">
<header>
<!-- avator -->
<div class="avatar">
2020-03-26 11:57:14 -04:00
<img class="avatarMask" src="/img/{{ .Site.Params.avatar }}" alt="{{ .Site.Params.avatarDescription }}">
2020-03-27 05:03:57 -04:00
<img src="/img/avatar-border.svg" class="avatar-border" alt="">
2019-03-23 03:18:03 -04:00
</div>
<!-- author -->
<h1 class="author">{{ .Site.Params.Author }}</h1>
</header>
<!-- description -->
2019-03-23 03:18:03 -04:00
<p>
2019-07-29 05:05:21 -04:00
{{ .Site.Params.description | safeHTML }}
2019-03-23 03:18:03 -04:00
</p>
<!-- navigation -->
<nav>
<ul>
{{ range .Site.Menus.main }}
2019-05-05 11:33:05 -04:00
<li><a href="{{ .URL }}" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
2019-03-23 03:18:03 -04:00
{{ end }}
</ul>
</nav>
</div>
</div>
{{- partial "footer.html" . -}}
</body>
2018-09-23 07:11:35 -04:00
</html>