]> git.bts.cx Git - garden.git/blob - templates/base.php
95cd6253f6311f6591809313f3541b493062bb29
[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                 <link rel="stylesheet" href="<?= garden_site_url('style', 'screen.css') ?>">
10                 <!--<link rel="alternate" type="application/atom+xml" title="bts.cx" href="<?= garden_site_url('feed') ?>" />-->
11
12                 <title><?= site_name ?> - <?= $article->title; ?></title>
13         </head>
14
15         <body>
16                 <header>
17                         <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>
18                 </header>
19
20                 <?= garden_template_content(); ?>
21
22                 <footer>
23                         <div>
24                         </div>
25                 </footer>
26         </body>
27 </html>