mirror of
https://github.com/myronblair/do-server-config
synced 2026-07-27 21:18:32 -05:00
15 lines
589 B
PHP
15 lines
589 B
PHP
<?php $pageTitle = $pageTitle ?? 'ChuckCo Time Keeper'; ?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="apple-mobile-web-app-title" content="ChuckCo">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<title><?= e($pageTitle) ?></title>
|
|
<link rel="stylesheet" href="/assets/style.css?v=<?= filemtime(__DIR__ . '/../assets/style.css') ?>">
|
|
</head>
|
|
<body>
|
|
<div class="brand-strip">👷 <span>Chuck<b>Co</b> Time Keeper</span></div>
|