47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
{{define "base"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>QRank</title>
|
|
|
|
<!-- Also apple support -->
|
|
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
|
|
|
<!-- Only one stylesheet for now -->
|
|
<link rel="stylesheet" type="text/css" href="/assets/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="header">
|
|
<div class="container">
|
|
<div class="row" style="justify-content:space-between;align-items:center">
|
|
<div><strong><a href="/" style="text-decoration:none;color:#111">{{block "title" .}}QRank{{end}}</a></strong></div>
|
|
|
|
<!-- Navigation menu -->
|
|
<div class="nav">
|
|
{{if .CurrentUser}}
|
|
<a href="/enter">Enter scores</a>
|
|
<a href="/history">History</a>
|
|
<a href="/leaderboard">Leaderboard</a>
|
|
<a href="/me">@{{.CurrentUser.Username}}</a>
|
|
{{else}}
|
|
<a href="/login">Log in</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<!-- Information messages for the user -->
|
|
{{if .Message}}<div class="message">{{.Message}}</div>{{end}}
|
|
|
|
<!-- This is shorthand for a define along with a template -->
|
|
{{block "content" .}}{{end}}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
{{end}} |