GoWeb/templates/base.html

17 lines
348 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SiteName - {{ template "pageTitle" }}</title>
2023-03-06 18:44:20 +00:00
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
{{ template "content" . }}
2023-03-06 18:44:20 +00:00
<div class="footer-container">
<footer>
<p>SiteName - Powered by GoWeb!</p>
</footer>
</div>
</body>
2023-03-06 18:44:20 +00:00
</html>