This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
score-tracker/views/layout.pug

22 lines
598 B
Plaintext
Raw Normal View History

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')
block stylesheets
body
2021-11-26 19:37:09 +00:00
div#mobile-view
div#actions-div
2021-11-26 19:46:16 +00:00
if !hideHomeButton
button#home-button Home
2021-11-26 19:37:09 +00:00
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")