takunomi-blog/templates/blog.tmpl

20 lines
334 B
Cheetah

{{define "blog"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
{{template "title" .}}
<div class="section">
<ul id="section">
{{template "navbar" .}}
{{template "main" .}}
</ul>
</div>
</body>
</html>
{{end}}