ss13_se/templates/base.html
2015-11-03 19:36:33 +01:00

51 lines
1.5 KiB
HTML

{{define "header"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
<link href="/static/css/style.css" rel="stylesheet">
<link rel="shortcut icon" href="/static/favicon.ico">
<title>
{{.pagetitle}} | SS13 Hub
</title>
</head>
<body>
<header>
<nav id="navbar">
<ul>
<li><a href="/">SS13 Hub</a></li>
<li><a href="/">Servers</a></li>
<li><a href="/stats">Stats</a></li>
<li><a href="/about">About</a></li>
<li class="divider"></li>
<li><a href="http://www.byond.com/games/exadv1/spacestation13">
Byond
</a></li>
</ul>
</nav>
</header>
<section id="content">
{{end}}
{{define "footer"}}
</section>
<footer id="bottom_footer">
<p>
<!--TODO: not sure about the copyright stuff when fetching ext. data.-->
<span class="left">
Copyright &#169; {{year}}
A. Svensson
</span>
<span class="right">
Source code at
<a href="https://github.com/lmas/ss13_se">Github</a>.
</span>
</p>
</footer>
</body>
</html>
{{end}}