GoBlog/templates/base.gohtml

12 lines
414 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" }}">
{{ template "title" . }}
{{ include "micropub" .Blog .Data }}
{{ include "header" .Blog .Data }}
{{ template "main" . }}
{{ end }}