diff options
| author | Jacob McDonnell <jacob@simplelittledream.com> | 2023-05-03 13:13:47 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@simplelittledream.com> | 2023-05-03 13:13:47 -0400 |
| commit | 97a8370caea2fae4a0a67165036aae2dc2d05900 (patch) | |
| tree | eb3c80ce24a66d342e3ba4143e88d6893a5f49b2 /templates/template.html | |
| parent | 79352a7fe3a64021b8c39db2a78a22cdd58abb1e (diff) | |
Rewrite of the website in Flask
Diffstat (limited to 'templates/template.html')
| -rwxr-xr-x | templates/template.html | 25 |
1 files changed, 25 insertions, 0 deletions
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> |
