GoBlog/templates/base.gohtml

15 lines
567 B
Plaintext

{{ define "base" }}
<!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/styles.css" }}">
{{ with user.Picture }}<link rel="shortcut icon" href="{{ . }}">{{ end }}
{{ with .Canonical }}<link rel="canonical" href="{{ . }}">{{ end }}
{{ template "title" . }}
{{ include "micropub" . }}
{{ include "header" . }}
{{ template "main" . }}
{{ include "footer" . }}
{{ end }}