summaryrefslogtreecommitdiff
path: root/src/View/BaseTemplate.php
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-01-07 20:18:27 -0600
committerChristian Cleberg <[email protected]>2026-01-07 20:18:27 -0600
commit01bd81cf3f943b4aff4e79f93910ab764a873548 (patch)
tree1890dfbf76a205a4e3cb47f29aa0528468883b5d /src/View/BaseTemplate.php
parent2fd901458c8da24fd0e28d4b07a99d3f4876316f (diff)
downloadhn-01bd81cf3f943b4aff4e79f93910ab764a873548.tar.gz
hn-01bd81cf3f943b4aff4e79f93910ab764a873548.tar.bz2
hn-01bd81cf3f943b4aff4e79f93910ab764a873548.zip
MASSIVE UPDATE TO PYTHON STATIC SERVICE
Diffstat (limited to 'src/View/BaseTemplate.php')
-rw-r--r--src/View/BaseTemplate.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/View/BaseTemplate.php b/src/View/BaseTemplate.php
deleted file mode 100644
index 1aa25ab..0000000
--- a/src/View/BaseTemplate.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<!doctype html>
-<html lang="en">
-
-<head>
- <title><?php echo $this->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="<?php echo $GLOBALS['author_name']; ?>">
- <meta name="description" content="<?php echo $this->description; ?>">
- <link rel="canonical" href="<?php echo $this->canonical_url; ?>">
- <link rel="stylesheet" href="/static/styles.min.css">
-</head>
-
-<body>
-<main id="main">
- <nav class="links">
- <span><a href="/">Top</a> &middot; </span>
- <span><a href="/best/">Best</a> &middot;</span>
- <span><a href="/new/">New</a> &middot;</span>
- <span><a href="/ask/">Ask</a> &middot;</span>
- <span><a href="/show/">Show</a> &middot;</span>
- <span><a href="/job/">Job</a></span>
- </nav>
- <?php echo $this->content; ?>
-</main>
-
-<footer>
- <p><a href="https://git.cleberg.net/hn.git">Source Code</a></p>
- <p>Copyright &copy; 2023 - <?php echo $this->current_year; ?></p>
-</footer>
-
-</body>
-
-</html>