2018-09-23 11:11:35 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2019-03-23 07:18:03 +00:00
|
|
|
{{- partial "head.html" . -}}
|
|
|
|
<body>
|
|
|
|
<div id="profileContainer">
|
2022-02-15 06:13:11 +00:00
|
|
|
<div id="profile" class="h-card">
|
2021-10-12 04:58:03 +00:00
|
|
|
<header class="home">
|
2019-03-23 07:18:03 +00:00
|
|
|
<!-- avator -->
|
|
|
|
<div class="avatar">
|
2022-02-15 06:13:11 +00:00
|
|
|
<img class="avatarMask u-photo" src="{{ .Site.BaseURL }}/img/{{ .Site.Params.avatar }}" alt="avatar">
|
2020-12-01 01:33:14 +00:00
|
|
|
<img src="{{ .Site.BaseURL }}/img/avatar-border.svg" alt="avatar-border">
|
2019-03-23 07:18:03 +00:00
|
|
|
</div>
|
|
|
|
<!-- author -->
|
2022-02-15 06:13:11 +00:00
|
|
|
<h1 class="author title p-name">{{ .Site.Params.Author }}</h1>
|
|
|
|
<a style="display: none" rel="me" class="u-url" href="https://brandonrozek.com"></a>
|
2019-03-23 07:18:03 +00:00
|
|
|
</header>
|
2019-04-01 20:32:20 +00:00
|
|
|
<!-- description -->
|
2022-02-15 06:13:11 +00:00
|
|
|
<p class="p-note">
|
2019-07-29 09:05:21 +00:00
|
|
|
{{ .Site.Params.description | safeHTML }}
|
2019-03-23 07:18:03 +00:00
|
|
|
</p>
|
|
|
|
<!-- navigation -->
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
{{ range .Site.Menus.main }}
|
2019-05-05 15:33:05 +00:00
|
|
|
<li><a href="{{ .URL }}" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
|
2019-03-23 07:18:03 +00:00
|
|
|
{{ end }}
|
2022-05-02 04:05:25 +00:00
|
|
|
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<p>You can also find me on:</p>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
2022-02-15 06:13:11 +00:00
|
|
|
{{ range .Site.Menus.profile }}
|
|
|
|
<li><a href="{{ .URL }}" rel="me" aria-label="{{ .Identifier }}">{{ .Pre }}<br>{{ .Name }}</a></li>
|
|
|
|
{{ end }}
|
2019-03-23 07:18:03 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{- partial "footer.html" . -}}
|
2022-02-15 06:13:11 +00:00
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "WebSite",
|
|
|
|
"url": "{{ .Permalink }}"
|
|
|
|
}
|
|
|
|
</script>
|
2019-03-23 07:18:03 +00:00
|
|
|
</body>
|
2018-09-23 11:11:35 +00:00
|
|
|
</html>
|