2024-12-25 23:02:09 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2024-12-27 02:52:58 +01:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="author" content="Filip Rojek | http://filiprojek.cz">
|
|
|
|
<meta name="email" content="webmaster(@)fofrweb.com">
|
|
|
|
<meta name="copyright" content="(c) filiprojek.cz">
|
2024-12-25 23:02:09 +01:00
|
|
|
<title>Habit Tracker | <?= $data['title'] ?></title>
|
2024-12-26 23:25:34 +01:00
|
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
|
|
<link rel="stylesheet" href="/css/global.css">
|
|
|
|
<link rel="stylesheet" href="/css/vars.css">
|
2024-12-27 15:05:55 +01:00
|
|
|
<link rel="stylesheet" href="/css/header.css">
|
2024-12-27 02:06:32 +01:00
|
|
|
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
|
2024-12-25 23:02:09 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2024-12-27 15:05:55 +01:00
|
|
|
<div id="hd-left">
|
|
|
|
<a href="/"><img src="/img/logo.jpg" alt="home"></a>
|
|
|
|
<a href="/"><?= $data['title'] ?></a>
|
|
|
|
</div>
|
|
|
|
<div id="hd-right">
|
|
|
|
<?php if (!isset($_SESSION['user'])): ?>
|
|
|
|
<a href="/auth/signin">Log In</a>
|
|
|
|
<a href="/auth/signup">Sign Up</a>
|
|
|
|
<?php else: ?>
|
|
|
|
<a href="/auth/logout">Log Out</a>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
2024-12-25 23:02:09 +01:00
|
|
|
</header>
|
2024-12-26 23:25:34 +01:00
|
|
|
<main class="content">
|
2024-12-25 23:02:09 +01:00
|
|
|
<?= $content ?>
|
2024-12-26 23:25:34 +01:00
|
|
|
</main>
|
2024-12-25 23:02:09 +01:00
|
|
|
</body>
|
|
|
|
</html>
|