mirror of
https://github.com/tomfran/typo.git
synced 2025-04-25 13:09:54 +03:00
20 lines
No EOL
402 B
HTML
20 lines
No EOL
402 B
HTML
{{/* Header */}}
|
|
|
|
<div class="header">
|
|
<h1>{{ site.Title }}</h1>
|
|
|
|
<div class="flex">
|
|
{{ $currentPage := . }}
|
|
|
|
{{ with site.Params.menu }}
|
|
{{ range . }}
|
|
<p class="small {{ if eq .url $currentPage.Path }} bold {{end}}">
|
|
<a href="{{.url}}">
|
|
/{{.name }}
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
</div>
|
|
</div> |