21 lines
377 B
HTML
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}}
|