]> git.bts.cx Git - garden.git/blob - templates/base.php
Initial commit
[garden.git] / templates / base.php
1 <!DOCTYPE html>
2
3 <html lang="en">
4         <head>
5                 <meta charset="UTF-8">
6                 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7                 <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
9                 <title><?= site_name ?> - <?= $article->title; ?></title>
10         </head>
11
12         <body>
13                 <header>
14                         <p>Find me <a href="https://mastodon.gamedev.place/@btsherratt" rel="me">@btsherratt</a> or on <a href="https://bts.itch.io/">itch.io</a></p>
15                 </header>
16
17                 <?= garden_template_content(); ?>
18
19                 <footer>
20                         <div>
21                         </div>
22                 </footer>
23         </body>
24 </html>