Begin refactoring structure
This commit is contained in:
16
app/frontend/templates/base.html
Normal file
16
app/frontend/templates/base.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!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>
|
Reference in New Issue
Block a user