13 lines
237 B
HTML
13 lines
237 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>SiteName - {{ template "pageTitle" }}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{{ template "content" . }}
|
||
|
</body>
|
||
|
<footer>
|
||
|
<p>SiteName - Powered by Go!</p>
|
||
|
</footer>
|
||
|
</html>
|