GoWeb/templates/base.html

13 lines
237 B
HTML
Raw Normal View History

<!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>