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.
14 lines
375 B
PHP
14 lines
375 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Daily Goals - Text</title>
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
</head>
|
|
<body>
|
|
<a href="/admin/texts" id="back">Back to Texts</a>
|
|
<div id="text-detail"></div>
|
|
<script src="/js/text.js"></script>
|
|
</body>
|
|
</html>
|