summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..c818385
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ $if(title)$
+ <title>info{culture} - $title$</title>
+ $else$
+ <title>info{culture}</title>
+ $endif$
+ <link rel="icon" href="/assets/favicon.ico" />
+ <link rel="stylesheet" href="/style.css" />
+</head>
+
+<body>
+ <header>
+ <a href="https://infoculture.pub"><img src="/assets/logo.svg" alt="infoculture" /></a>
+ </header>
+
+ <nav>
+ <ul>
+ <li><a href="/">home</a></li>
+ <li><a href="/about">about</a></li>
+ <li><a href="/contact">contact</a></li>
+ <li><a href="/archives">archives</a></li>
+ <li id="atom-badge">
+ <a href="/feed.xml"><img src="/assets/atom.png"></a>
+ </li>
+ </ul>
+ </nav>
+
+ $body$
+
+ <footer>
+ </footer>
+</body>
+
+</html> \ No newline at end of file