Files
gf/.example/os/gview/layout/layout1/template/layout.html
2020-09-22 20:12:34 +08:00

15 lines
256 B
Go

<!DOCTYPE html>
<html>
<head>
<title>GoFrame Layout</title>
{{template "header" .}}
</head>
<body>
<div class="container">
{{template "container" .}}
</div>
<div class="footer">
{{template "footer" .}}
</div>
</body>
</html>