tech-ingolf-wagner-de/layouts/_default/baseof.html

31 lines
873 B
HTML

<html lang="en">
<head>
<title> {{ .Title }} </title>
{{/* needed for responsive design */}}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="author" content="Ingolf Wagner">
<link href="https://fonts.googleapis.com/css?family=Roboto|Abel|Inconsolata|Lato|Zilla+Slab" rel="stylesheet">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<nav id="main-navigation">
<ul id="patterns-list">
{{ $current := . }}
{{ range .Site.Menus.main }}
{{ $active := or ($current.IsMenuCurrent "main" .) ($current.HasMenuCurrent "main" .) }}
<li {{if $active}}class="active" {{end}}>
<a href="{{ .URL }}" title="{{ .Title }}"> {{ .Name }} </a>
</li>
{{ end }}
</ul>
</nav>
{{ block "main" . }}
empty
{{ end }}
</body>
</html>