2020-07-29 16:29:25 +02:00
|
|
|
{{define "markdown_wrapper"}}<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
{{template "meta_tags" .Title}}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{{template "page_top" .}}
|
2022-10-11 14:21:06 +02:00
|
|
|
<header>
|
|
|
|
<h1>{{.Title}}</h1>
|
|
|
|
</header>
|
|
|
|
<div id="page_content" class="page_content">
|
|
|
|
<section>
|
|
|
|
{{.Other}}
|
|
|
|
</section>
|
|
|
|
</div>
|
2020-07-29 16:29:25 +02:00
|
|
|
{{template "page_bottom" .}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|