Files
fnx_web/res/template/fragments/markdown_wrapper.html

20 lines
318 B
HTML
Raw Normal View History

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-01-11 13:28:22 +01:00
<header>
2022-01-03 14:02:50 +01:00
<h1>{{.Title}}</h1>
2022-01-11 13:28:22 +01:00
</header>
<section>
2020-07-29 16:29:25 +02:00
{{.Other}}
2022-01-11 13:28:22 +01:00
</section>
2020-07-29 16:29:25 +02:00
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}