All checks were successful
release-tag / release-image (push) Successful in 2m46s
16 lines
468 B
HTML
16 lines
468 B
HTML
{{ define "layout" }}<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }}</title>
|
|
<meta name="description" content="{{ .Description }}">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<header><a href="/">B1TS Blog</a></header>
|
|
<main>{{ template "content" . }}</main>
|
|
<footer>© {{ now.Format "2006" }}</footer>
|
|
</body>
|
|
</html>{{ end }}
|