21 lines
483 B
HTML
21 lines
483 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<title>{{ block "title" .}}go-project-template{{ end }}</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
<link rel="stylesheet" href="/static/main.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="main">
|
|
{{ block "body" .}}{{ end }}
|
|
</div>
|
|
<footer>
|
|
<code>{{ version }}</code>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|