Files
goview/_examples/echo/views/layouts/master.html
2019-04-16 19:10:06 +08:00

15 lines
259 B
HTML

<!-- /views/admin/master.html -->
<!doctype html>
<html>
<head>
<title>{{.title}}</title>
{{template "head" .}}
</head>
<body>
{{template "content" .}}
<hr>
{{include "layouts/footer"}}
</body>
</html>