GoWeb/internal/frontend/templates/base.html
2024-07-10 17:45:04 -05:00

17 lines
354 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SiteName - {{ template "pageTitle" }}</title>
<link href="/app/frontend/staticyle.css" rel="stylesheet">
</head>
<body>
{{ template "content" . }}
<div class="footer-container">
<footer>
<p>SiteName - Powered by GoWeb!</p>
</footer>
</div>
</body>
</html>