takunomi-blog/templates/blog.tmpl

20 lines
334 B
Cheetah
Raw Normal View History

2017-11-07 11:16:35 +00:00
{{define "blog"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/css/style.css">
2017-11-07 11:16:35 +00:00
</head>
<body>
2022-06-09 18:26:01 +00:00
{{template "title" .}}
2021-03-09 20:10:26 +00:00
<div class="section">
<ul id="section">
2022-06-09 18:26:01 +00:00
{{template "navbar" .}}
{{template "main" .}}
2021-03-09 20:10:26 +00:00
</ul>
2017-11-19 14:02:18 +00:00
</div>
2017-11-07 11:16:35 +00:00
</body>
</html>
2017-11-19 14:02:18 +00:00
{{end}}