19 lines
368 B
HTML
19 lines
368 B
HTML
|
{{define "markdown_wrapper"}}<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{{template "meta_tags" .Title}}
|
||
|
{{template "user_style" .}}
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{{template "page_top" .}}
|
||
|
<h1>{{.Title}}</h1>
|
||
|
<div class="page_content"><div class="limit_width">
|
||
|
{{.Other}}
|
||
|
</div></div>
|
||
|
{{template "page_bottom" .}}
|
||
|
{{template "analytics"}}
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|