2018-10-25 15:51:47 +02:00
|
|
|
{{ define "header" }}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
2019-01-03 12:18:47 +01:00
|
|
|
<title>{{ .Data.Title }}</title>
|
|
|
|
<meta name="description" content="{{ .Data.Description }}" />
|
2018-10-25 15:51:47 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
|
|
|
|
2019-01-03 12:18:47 +01:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,600" rel="stylesheet">
|
2018-10-25 15:51:47 +02:00
|
|
|
<link href="/public/static/style.css" rel="stylesheet" type="text/css" />
|
2019-01-03 12:18:47 +01:00
|
|
|
|
|
|
|
{{ if ne .FaviconURL "" }}
|
|
|
|
<link rel="shortcut icon" href="{{ .FaviconURL }}" type="image/x-icon" />
|
|
|
|
{{ else }}
|
|
|
|
<link rel="shortcut icon" href="/public/static/favicon.png" type="image/x-icon" />
|
|
|
|
{{ end }}
|
2018-10-25 15:51:47 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container wrap">
|
|
|
|
<header class="header">
|
2019-01-03 12:18:47 +01:00
|
|
|
<div class="logo">
|
|
|
|
{{ if ne .LogoURL "" }}
|
|
|
|
<img src="{{ .LogoURL }}" alt="{{ .Data.Title }}" />
|
|
|
|
{{ else }}
|
|
|
|
<img src="/public/static/logo.svg" alt="{{ .Data.Title }}" />
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2018-10-25 15:51:47 +02:00
|
|
|
</header>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "footer" }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<footer class="footer">
|
|
|
|
Powered by <a target="_blank" href="https://listmonk.app">listmonk</a>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|