website-theme/layouts/index.html

33 lines
876 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">
<img class="avatarMask" src="/img/{{ .Site.Params.avatar }}" alt="avatar">
<img src="/img/avatar-border.svg" alt="avatar-border">
</div>
<!-- author -->
<h1 class="author">{{ .Site.Params.Author }}</h1>
</header>
<!-- discription -->
<p>
{{ .Site.Params.discription }}
</p>
<!-- navigation -->
<nav>
<ul>
{{ range .Site.Menus.main }}
2019-03-29 12:46:49 -04:00
<li><a href="{{ .URL }}" aria-label="{{ .Name }}">{{ .Pre }}</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>