mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 10:50:34 -05:00
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
<div id="profileContainer">
|
|
<div id="profile" class="h-card">
|
|
<header class="home">
|
|
<!-- avator -->
|
|
<div class="avatar">
|
|
<img class="avatarMask u-photo" src="{{ .Site.BaseURL }}/img/{{ .Site.Params.avatar }}" alt="avatar">
|
|
<img src="{{ .Site.BaseURL }}/img/avatar-border.svg" alt="avatar-border">
|
|
</div>
|
|
<!-- author -->
|
|
<h1 class="author title p-name">{{ .Site.Params.Author }}</h1>
|
|
<a style="display: none" rel="me" class="u-url" href="https://brandonrozek.com"></a>
|
|
</header>
|
|
<!-- description -->
|
|
<p class="p-note">
|
|
{{ .Site.Params.description | safeHTML }}
|
|
</p>
|
|
<!-- navigation -->
|
|
<nav>
|
|
<ul>
|
|
{{ range .Site.Menus.main }}
|
|
<li><a href="{{ .URL }}" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
|
|
{{ end }}
|
|
{{ range .Site.Menus.profile }}
|
|
<li><a href="{{ .URL }}" rel="me" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
{{- partial "footer.html" . -}}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "WebSite",
|
|
"url": "{{ .Permalink }}"
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|