29 lines
776 B
Plaintext
29 lines
776 B
Plaintext
head
|
|
meta(charset='utf-8')
|
|
meta(name='viewport' content='width=device-width, initial-scale=1')
|
|
title BenchCoach - Home
|
|
link(rel='stylesheet' href='/css/bootstrap.min.css')
|
|
link(rel='stylesheet' href='/css/project.css')
|
|
body.bg-light
|
|
.container
|
|
.row
|
|
.text-center.my-2
|
|
.row
|
|
h1
|
|
img.mx-auto(src="media/benchcoach.svg" style="width: 2.5em;")
|
|
.row
|
|
h1
|
|
strong
|
|
| Welcome to
|
|
span.text-nowrap BenchCoach
|
|
.text-center.lead.fst-italic.fw-light
|
|
| An assistant coach for TeamSnap
|
|
.row
|
|
.col.text-center
|
|
if req.user
|
|
ul.list-group
|
|
each team in teams
|
|
a(class='team list-group-item' href=`/${team.id}`) #{team.name} [#{team.seasonName}]
|
|
else
|
|
a.btn.btn-outline-primary(href="login")
|
|
| Login |