aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/base.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-01-18 17:06:40 -0600
committerChristian Cleberg <[email protected]>2026-01-18 17:06:40 -0600
commit927757547a1b7dbd6fe422d70f9ca422801571cc (patch)
tree8f4bf00c24bdcedea423252da441cdf7c7675ab5 /theme/templates/base.html
parent6a2d437c056d7e5e5b0fb8cd73fc10bf7b37b73c (diff)
downloadcleberg.net-927757547a1b7dbd6fe422d70f9ca422801571cc.tar.gz
cleberg.net-927757547a1b7dbd6fe422d70f9ca422801571cc.tar.bz2
cleberg.net-927757547a1b7dbd6fe422d70f9ca422801571cc.zip
publish new terminal theme
Diffstat (limited to 'theme/templates/base.html')
-rw-r--r--theme/templates/base.html60
1 files changed, 44 insertions, 16 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 4aa3118..197de0f 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -17,22 +17,50 @@
{% endblock %}
</head>
<body>
- <div aria-label="Skip to Content" role="navigation">
- <a href="#main" class="skip-link">Skip to content</a>
+ <div class="scanlines"></div>
+ <div class="terminal-shell">
+ <header class="system-header">
+ <div class="sys-info">SYS_OS [VER 2.26.1]</div>
+ <nav aria-label="Site Navigation">
+ <ul>
+ <li><a href="/">Home</a></li>
+ <li><a href="/about/">About</a></li>
+ <li><a href="/blog/">Blog</a></li>
+ <li><a href="/services/">Services</a></li>
+ </ul>
+ </nav>
+ </header>
+
+ <main id="main">
+ <div class="glass-pane"> {% block main %}{% endblock %}
+ </div>
+ </main>
+
+<footer>
+ <div class="system-log">
+ <div class="log-entry">
+ <span class="log-time">[{{ now() | strftime("%H:%M:%S") }}]</span>
+ <span class="log-msg">KERNEL: CLEBERG_OS_NODE INITIALIZED</span>
+ </div>
+ <div class="log-entry">
+ <span class="log-time">[{{ now() | strftime("%H:%M:%S") }}]</span>
+ <span class="log-msg">BUILD_TS: &lt;{{ now() | strftime("%Y-%m-%d %a %H:%M:%S") }}&gt;</span>
+ </div>
+ <div class="log-entry">
+ <span class="log-time">[{{ now() | strftime("%H:%M:%S") }}]</span>
+ <span class="log-msg">STATUS: SESSION_ID #<span class="session-id"></span> ACTIVE</span>
+ </div>
+ </div>
+
+ <div class="status-bar">
+ <span class="status-node">NODE: CLEBERG_NET</span>
+ <span class="status-links">
+ <a href="https://git.cleberg.net/cleberg.net.git">SOURCE</a> &middot;
+ <a href="/feed.xml">RSS</a> &middot;
+ <a href="http://sv3g2dlyvwyk2nvi3eeh55fcrpdvjlclhi6wwsx57cste6lwdjanzyyd.onion">ONION</a>
+ </span>
+ </div>
+</footer>
</div>
- <nav aria-label="Site Navigation">
- <ul>
- <li><a href="/">Home</a></li>
- <li><a href="/about/">About</a></li>
- <li><a href="/blog/">Blog</a></li>
- <li><a href="/services/">Services</a></li>
- </ul>
- </nav>
- <main id="main">{% block main %}{% endblock %}</main>
- <footer>
- <a href="https://git.cleberg.net/cleberg.net.git">Source</a> (<a href="http://3mria4zis7wal2g5rdbdjrkc4yso2xqd6t6psmfz3dpqwflmx3zts5id.onion/">.onion</a>) &middot;
- <a href="/feed.xml">RSS</a> &middot;
- <a href="http://sv3g2dlyvwyk2nvi3eeh55fcrpdvjlclhi6wwsx57cste6lwdjanzyyd.onion">.onion</a>
- </footer>
</body>
</html>