Files
fnx_web/res/template/fragments/markdown_wrapper.html
2025-09-24 19:40:59 +02:00

21 lines
358 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>
<div id="page_content" class="page_content">
<section>
{{.Other}}
</section>
</div>
{{template "page_bottom" .}}
</body>
</html>
{{end}}