GoBlog/templates/base.gohtml

15 lines
535 B
Plaintext
Raw Normal View History

2020-07-31 13:48:01 +00:00
{{ define "base" }}
2020-09-19 10:57:14 +00:00
<!doctype html>
<html lang={{ blog.Lang }}>
<meta charset=utf-8>
<meta name=viewport content="width=device-width,initial-scale=1">
<meta http-equiv=x-ua-compatible content="IE=edge">
<link rel="stylesheet" href="{{ asset "css/style.scss" }}">
{{ template "title" . }}
2020-09-19 11:37:58 +00:00
<header>
<h1><a href="/" rel="home" title="{{ blog.Title }}">{{ blog.Title }}</a></h1>
{{ with blog.Description }}<p><i>{{ . }}</i></p>{{ end }}
{{ include "menu" . }}
</header>
2020-09-19 10:57:14 +00:00
{{ template "main" . }}
2020-07-31 13:48:01 +00:00
{{ end }}