This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-02-08 15:48:53 +00:00
|
|
|
doctype html
|
|
|
|
html
|
|
|
|
head
|
2021-11-26 19:37:09 +00:00
|
|
|
title= title + ' - Score Tracker'
|
2021-10-04 19:42:52 +00:00
|
|
|
meta(name='viewport', content='width=device-width, initial-scale=1')
|
2021-10-04 19:31:22 +00:00
|
|
|
link(rel='stylesheet', href='/stylesheets/style.css')
|
2021-10-04 17:30:35 +00:00
|
|
|
block stylesheets
|
2021-02-08 15:48:53 +00:00
|
|
|
body
|
2021-11-26 19:37:09 +00:00
|
|
|
div#mobile-view
|
|
|
|
div#actions-div
|
|
|
|
block actions
|
|
|
|
if userLoggedIn
|
|
|
|
button#logout-button Log out
|
|
|
|
else if userLoggedIn !== undefined
|
|
|
|
button#login-button Log in
|
|
|
|
h1 #{title}
|
|
|
|
block content
|
2021-11-21 21:37:35 +00:00
|
|
|
block scripts
|
2021-11-26 19:37:09 +00:00
|
|
|
script(src='/scripts/main.js' type="module")
|