diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-06-14 22:08:34 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-06-14 22:08:34 -0500 |
commit | 49efb238b879bce764d04dad99c7a169e80f93dd (patch) | |
tree | 7b1d26dbe86710ee7830b3fe6ff82afff3712e2d /templates/template.html | |
parent | 53488151f29e3afbd1b1348597ff2123b97ad2d7 (diff) | |
download | hn-49efb238b879bce764d04dad99c7a169e80f93dd.tar.gz hn-49efb238b879bce764d04dad99c7a169e80f93dd.tar.bz2 hn-49efb238b879bce764d04dad99c7a169e80f93dd.zip |
massive overhaul to implement proper MVC
Diffstat (limited to 'templates/template.html')
-rw-r--r-- | templates/template.html | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/templates/template.html b/templates/template.html deleted file mode 100644 index 51b24b7..0000000 --- a/templates/template.html +++ /dev/null @@ -1,36 +0,0 @@ -<!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/styles.min.css"> -</head> - -<body> - <main id="main"> - <nav class="links"> - <span><a href="/">Top</a> · </span> - <span><a href="/best/">Best</a> ·</span> - <span><a href="/new/">New</a> ·</span> - <span><a href="/ask/">Ask</a> ·</span> - <span><a href="/show/">Show</a> ·</span> - <span><a href="/job/">Job</a></span> - </nav> - {content} - </main> - - <footer> - <p><a href="https://sr.ht/~cmc/hn/">Source Code</a></p> - <p>Copyright © 2023 - {current_year}</p> - </footer> - -</body> - -</html> |