GoBlog/templates/header.gohtml

7 lines
269 B
Plaintext
Raw Normal View History

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