20 lines
318 B
HTML
20 lines
318 B
HTML
{{define "markdown_wrapper"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" .Title}}
|
|
</head>
|
|
|
|
<body>
|
|
{{template "page_top" .}}
|
|
<header>
|
|
<h1>{{.Title}}</h1>
|
|
</header>
|
|
<section>
|
|
{{.Other}}
|
|
</section>
|
|
{{template "page_bottom" .}}
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|