summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/404.html23
-rwxr-xr-xtemplates/articletemplate.html23
-rwxr-xr-xtemplates/template.html25
3 files changed, 71 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html
new file mode 100755
index 0000000..66918f5
--- /dev/null
+++ b/templates/404.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>404 Page Not Found</title>
+ <link href="CSS/main.css" rel="stylesheet" type="text/css">
+ <link href="favicon.ico" rel="icon" sizes="any">
+ </head>
+ <body>
+ <ul class="topBar">
+ <li class="topLink"><a href="https://jacobmcdonnell.com/">home</a></li>
+ <li class="topLink"><a href="https://github.com/JacobMcDonnell">github</a></li>
+ <li class="topLink"><a href="https://jacobmcdonnell.com/articles">articles</a></li>
+ </ul>
+ <div class="main">
+ <center>
+ <h1>404 Page Not Found</h1>
+ <p>Maybe you want to go to one of the pages in nav bar instead.</p>
+ </center>
+ </div>
+ </body>
+</html>
diff --git a/templates/articletemplate.html b/templates/articletemplate.html
new file mode 100755
index 0000000..4ba1204
--- /dev/null
+++ b/templates/articletemplate.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Raspberry Pi Rocky Linux Webserver</title>
+ <link href="/css/main.css" rel="stylesheet" type="text/css">
+ <link href="/favicon.ico" rel="icon" sizes="any">
+ <meta name="description" content="A tutorial on setting up a webserver on a Raspberry Pi with Rocky Linux 8"/>
+ <meta name="author" content="Jacob McDonnell"/>
+ <meta name="keywords" content="rocky,rocky linux,linux,raspberry pi,webserver,nginx,certbot,website"/>
+ </head>
+ <body>
+ <ul class="topBar">
+ <li class="topLink"><a href="/">home</a></li>
+ <li class="topLink"><a href="/articles">articles</a></li>
+ <li class="topLink"><a href="/rss">rss feed</a></li>
+ </ul>
+ <div class="main">
+ {{body|safe}}
+ </div>
+ </body>
+</html>
diff --git a/templates/template.html b/templates/template.html
new file mode 100755
index 0000000..a4e8c28
--- /dev/null
+++ b/templates/template.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta http-equiv="Cache-control" content="public">
+ <meta name="description" content="This is the personal website for the real Jacob McDonnell.
+ Feel free to look around, you might find something interesting."/>
+ <meta name="author" content="Jacob McDonnell"/>
+ <meta name="keywords" content="Jacob,McDonnell,Jacob McDonnell,jacob,mcdonnell,jacob mcdonnell"/>
+ <title>Jacob McDonnell</title>
+ <link href="/css/main.css" rel="stylesheet" type="text/css">
+ <link href="/favicon.ico" rel="icon" sizes="any">
+ </head>
+ <body>
+ <ul class="topBar">
+ <li class="topLink"><a href="/">home</a></li>
+ <li class="topLink"><a href="https://github.com/JacobMcDonnell">github</a></li>
+ <li class="topLink"><a href="/articles">articles</a></li>
+ </ul>
+ <div class="main">
+ {{body|safe}}
+ </div>
+ </body>
+</html>