Files
fnx_web/res/template/fragments/markdown_wrapper.html
2022-01-03 14:02:50 +01:00

21 lines
377 B
HTML

{{define "markdown_wrapper"}}<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" .Title}}
{{template "user_style" .}}
</head>
<body>
{{template "page_top" .}}
<div class="checkers inset">
<h1>{{.Title}}</h1>
</div>
<div class="limit_width">
{{.Other}}
</div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}