doctype html
html
head
title= title + ' - Score Tracker'
meta(name='viewport', content='width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1, user-scalable=no')
link(rel='stylesheet', href='/stylesheets/style.css')
block stylesheets
body
div#mobile-view
noscript
span#noscript-message Please enable JavaScript to run this app.
div#actions-div
if !hideHomeButton
button#home-button Home
block actions
if userLoggedIn
button#logout-button Log out
else if userLoggedIn !== undefined
button#login-button Log in
h1 #{title}
block content
div#about-footer
a(href="/about") Help/About
block scripts
script(src='/scripts/main.js' type="module")