GoBlog/templates/header.gohtml

8 lines
264 B
Plaintext

{{ define "header" }}
<header>
{{ $blog := (blog .Blog) }}
<h1><a href="/" rel="home" title="{{ $blog.Title }}">{{ $blog.Title }}</a></h1>
{{ with $blog.Description }}<p><i>{{ . }}</i></p>{{ end }}
{{ include "menu" . }}
</header>
{{ end }}