blob: 5cf34fc098840871abb1db1c9b27446a795c1e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<header>
<div>
<h1>
<a href="{{ .Site.Home.RelPermalink }}">
CostasDEV
</a>
</h1>
<nav>
{{$current := .}}
{{ range .Site.Home.Pages }}
<a href="{{ .RelPermalink }}"{{ if eq .RelPermalink $current.RelPermalink }} class="active"{{ end }}>{{ .Title }}</a>
{{ end }}
</nav>
</div>
<nav>
<a rel="me" href="https://masto.es/@arielcg">Mastodon</a>
<a href="https://github.com/arielcostas">GitHub</a>
<a href="https://linkedin.com/in/ariel-costas">LinkedIn</a>
</nav>
</header>
|