krz/php-blog
A PHP blogging system with built-in static comments.
clone: git clone https://gitbay.org/krz/php-blog.git
main: _templates/template.html · raw
1<!doctype html>
2<html lang="en">
3
4<head>
5 <title>{Page_Title}</title>
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8 <meta http-equiv="x-ua-compatible" content="ie=edge">
9 <meta name="author" content="My Name">
10 <meta name="description" content="{Page_Description}">
11 <link rel="canonical" href="{Canonical_URL}">
12 <link rel="icon" href="/favicon.ico">
13 <link rel="stylesheet" href="/static/app.css">
14 {Page_Extras}
15</head>
16
17<body>
18<main id="main">
19 <nav class="links">
20 <span>[<a href="/">Home</a>]</span>
21 <span>[<a href="/categories/">Categories</a>]</span>
22 <span>[<a href="/comments/">Comments</a>]</span>
23 <span>[<a href="/rss.xml">RSS</a>]</span>
24 </nav>
25 {Content_Column}
26 {User_Comments}
27</main>
28
29<footer>
30 <h2>Contact</h2>
31 <p>Have questions? Email me <br>
32 at <a href="mailto:hello@example.com">hello@example.com</a>,<br>
33 message me on <a rel="me" href="https://floss.social/@example">Mastodon</a>,<br>
34 or open an issue on <a href="https://github.com/WittsEnd2/Example_Repo">GitHub</a>.</p>
35 <p>Copyright © 20xx - {Current_Year}</p>
36</footer>
37
38</body>
39
40</html>