diff options
author | cel 🌸 <cel@blos.sm> | 2024-07-11 02:38:39 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2024-07-11 02:38:39 +0100 |
commit | 3a1d7848cb3ceb122b573737b4fba8106792ab5d (patch) | |
tree | 6fb0101f38ecd8d3e4fcae79dc96a01d24468951 /templates/base.html | |
download | infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.tar.gz infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.tar.bz2 infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | templates/base.html | 40 |
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 |