link app.css and add viewport meta in templates

add a stylesheet link and the standard responsive viewport meta tag
to every page template. purely additive - no markup or selector
changes - so existing cypress assertions and page js id hooks remain
intact. with this commit every page picks up the base styling from
app.css.
This commit is contained in:
Yisroel Baum 2026-05-01 11:24:30 +03:00
parent 34da76607f
commit d4a8adc4a4
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
8 changed files with 24 additions and 0 deletions

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Admin</title> <title>Daily Goals - Admin</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<button id="logout">Logout</button> <button id="logout">Logout</button>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Forbidden</title> <title>Daily Goals - Forbidden</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>403 Forbidden</h1> <h1>403 Forbidden</h1>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Home</title> <title>Daily Goals - Home</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>Home</h1> <h1>Home</h1>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Login</title> <title>Daily Goals - Login</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>Login</h1> <h1>Login</h1>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Register</title> <title>Daily Goals - Register</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>Register</h1> <h1>Register</h1>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Text</title> <title>Daily Goals - Text</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<a href="/admin/texts" id="back">Back to Texts</a> <a href="/admin/texts" id="back">Back to Texts</a>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Texts</title> <title>Daily Goals - Texts</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>Texts</h1> <h1>Texts</h1>

View file

@ -1,7 +1,10 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Daily Goals - Today</title> <title>Daily Goals - Today</title>
<link rel="stylesheet" href="/css/app.css">
</head> </head>
<body> <body>
<h1>Today</h1> <h1>Today</h1>