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

27 lines
412 B
HTML
Raw Normal View History

2018-06-18 09:14:28 +02:00
<html>
<head>
2018-09-28 18:10:42 +02:00
2018-06-18 09:14:28 +02:00
<title> {{ .Title }} </title>
2018-09-30 09:05:54 +02:00
<link href="https://fonts.googleapis.com/css?family=Roboto|Abel|Inconsolata|Lato|Zilla+Slab" rel="stylesheet">
<link rel="stylesheet" href="/css/main.css">
2018-06-18 09:14:28 +02:00
</head>
<body>
2018-09-29 19:04:15 +02:00
<nav id="main-navigation">
2018-09-28 18:10:42 +02:00
<ul >
<li> <a href="/">main</a> </li>
</ul>
2018-09-28 18:34:13 +02:00
</nav>
2018-09-28 18:10:42 +02:00
2018-09-29 19:04:15 +02:00
<div id="main-block">
2018-09-28 18:34:13 +02:00
{{ block "main" . }}
empty
{{ end }}
2018-09-29 19:04:15 +02:00
</div>
2018-06-18 09:14:28 +02:00
</body>
</html>