Files
plumber/templates/hunt.html
T

22 lines
747 B
HTML

{{define "hunt"}}
{{template "header" .}}
<main id="main" class="wrap">
<div class="hunt-head">
<div>
<p class="eyebrow">{{if .IsToday}}Live board{{else if .IsYesterday}}Prior board{{else}}Archive{{end}}</p>
<h1>{{.Label}}</h1>
</div>
<nav class="date-nav" aria-label="Hunt date">
<a class="chip{{if .IsToday}} is-on{{end}}" href="/">Today</a>
<form class="date-form" action="/archive" method="get">
<label class="sr-only" for="hunt-date">Pick a date</label>
<input id="hunt-date" type="date" name="date" value="{{.Date}}" max="{{.Today}}"
onchange="this.form.requestSubmit()">
</form>
</nav>
</div>
{{template "leaderboard" .}}
</main>
{{template "footer" .}}
{{end}}