GoBlog/templates/header.gohtml

7 lines
242 B
Plaintext
Raw Normal View History

{{ define "header" }}
<header>
2020-10-12 16:47:23 +00:00
<h1><a href="/" rel="home" title="{{ .Blog.Title }}">{{ .Blog.Title }}</a></h1>
{{ with .Blog.Description }}<p><i>{{ . }}</i></p>{{ end }}
{{ include "menu" .Blog .Data }}
</header>
{{ end }}