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

26 lines
802 B
Text

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")