aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-07-28 19:46:20 -0500
committerChristian Cleberg <hello@cleberg.net>2024-07-28 19:46:20 -0500
commit2be43cc479dfd4cfb621f14381330c708291e324 (patch)
tree7ac50f99425c5524c0820360754045b80d1bafcc /templates/base.html
parentafe76ac7d7498b862abaa623790b91410e34574d (diff)
downloadcleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.gz
cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.tar.bz2
cleberg.net-2be43cc479dfd4cfb621f14381330c708291e324.zip
conversion from Zola to Weblorg
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/templates/base.html b/templates/base.html
deleted file mode 100644
index 56b2be7..0000000
--- a/templates/base.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!doctype html>
-<html lang="en">
-<head>
- {% block title %}
- <title>cleberg.net</title>
- {% endblock %}
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="theme-color" content="#111" media="(prefers-color-scheme:
- dark)">
- <meta name="theme-color" content="#fff" media="(prefers-color-scheme:
- light)">
- {% if page %} {% if page.description %}
- <meta name="description" content="{{ page.description }}">
- {% elif config.description %}
- <meta name="description" content="{{ config.description }}">
- {% endif %} {% elif config.description %}
- <meta name="description" content="{{ config.description }}" /> {% endif
- %}
-
- {% block rss %}
- <link rel="alternate" type="application/atom+xml" title="RSS" href="{{
- get_url(path="atom.xml", trailing_slash=false) }}">
- {% endblock %}
-
- {% block css %}
- <link rel="stylesheet" href="/styles.min.css">
- {% endblock css %}
-
- {% block extra_head %}{% endblock extra_head %}
-</head>
-<body>
- <nav class="site-nav" aria-label="site-nav" role="navigation">
- <ul>
- <li><a href="/">Home</a></li>
- <li><a href="/blog/">Blog</a></li>
- <li><a href="/services/">Services</a></li>
- <li><a href="/wiki/">Wiki</a></li>
- </ul>
- </nav>
-
- <main>{% block content %}{% endblock content %}</main>
-
- <footer>
- <p>Last build: &lt;{{ now() | date(format='%Y-%m-%d %a %H:%M:%S') }}&gt;</p>
- <p>
- <a href="https://git.sr.ht/~cyborg/cleberg.net"
- target="_blank" rel="noopener">Source Code</a>
- &middot;
- <a href="/atom.xml">Atom RSS Feed</a>
- </p>
- </footer>
-</body>
-</html>