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

24 lines
742 B
Plaintext
Raw Normal View History

doctype html
html
head
2021-11-26 19:37:09 +00:00
title= title + ' - Score Tracker'
2021-11-27 05:39:20 +00:00
meta(name='viewport', content='width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1, user-scalable=no')
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
2021-11-26 21:19:53 +00:00
noscript
span#noscript-message Please enable JavaScript to run this app.
2021-11-26 19:37:09 +00:00
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")