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

21 lines
348 B
HTML

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