GoBlog/templates/base.gohtml

15 lines
567 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>
2020-10-12 16:47:23 +00:00
<html lang={{ .Blog.Lang }}>
2020-09-19 10:57:14 +00:00
<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/styles.css" }}">
2020-11-01 17:37:21 +00:00
{{ with user.Picture }}<link rel="shortcut icon" href="{{ . }}">{{ end }}
{{ with .Canonical }}<link rel="canonical" href="{{ . }}">{{ end }}
2020-09-19 10:57:14 +00:00
{{ template "title" . }}
2020-11-01 17:37:21 +00:00
{{ include "micropub" . }}
{{ include "header" . }}
2020-09-19 10:57:14 +00:00
{{ template "main" . }}
2020-11-01 17:37:21 +00:00
{{ include "footer" . }}
2020-07-31 13:48:01 +00:00
{{ end }}