diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-05-22 15:18:52 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-05-22 15:18:52 -0500 |
commit | deb20fdfca35c64066fe4e375099350dc77ea408 (patch) | |
tree | 8be0f7541652e4e8f89fc4dd603fae7accf4ee24 /_templates | |
download | php-blog-deb20fdfca35c64066fe4e375099350dc77ea408.tar.gz php-blog-deb20fdfca35c64066fe4e375099350dc77ea408.tar.bz2 php-blog-deb20fdfca35c64066fe4e375099350dc77ea408.zip |
initial commit
Diffstat (limited to '_templates')
-rw-r--r-- | _templates/template.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/_templates/template.html b/_templates/template.html new file mode 100644 index 0000000..2d3f92e --- /dev/null +++ b/_templates/template.html @@ -0,0 +1,40 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>{Page_Title}</title> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <meta name="author" content="My Name"> + <meta name="description" content="{Page_Description}"> + <link rel="canonical" href="{Canonical_URL}"> + <link rel="icon" href="/favicon.ico"> + <link rel="stylesheet" href="/static/app.css"> + {Page_Extras} +</head> + +<body> +<main id="main"> + <nav class="links"> + <span>[<a href="/">Home</a>]</span> + <span>[<a href="/categories/">Categories</a>]</span> + <span>[<a href="/comments/">Comments</a>]</span> + <span>[<a href="/rss.xml">RSS</a>]</span> + </nav> + {Content_Column} + {User_Comments} +</main> + +<footer> + <h2>Contact</h2> + <p>Have questions? Email me <br> + at <a href="mailto:hello@example.com">hello@example.com</a>,<br> + message me on <a rel="me" href="https://floss.social/@example">Mastodon</a>,<br> + or open an issue on <a href="https://github.com/WittsEnd2/Example_Repo">GitHub</a>.</p> + <p>Copyright © 20xx - {Current_Year}</p> +</footer> + +</body> + +</html> |