aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/base.html
blob: 197de0f91a52dd2c6be18d2b5098ff9700cad997 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en-us">
<head>
    {% block head %}
    <meta charset="utf-8">
    <title>
    {% block subtitle %}{% endblock %}
    {% block title %}{{ site_name | default("weblorg website") }}{% endblock %}
    </title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    {% if site_owner is defined %}<meta name="author" content="{{ site_owner }}" >{% endif %}
    {% if site_description is defined %}<meta name="description" content="{{ site_description }}" >{% endif %}
    {% if site_keywords is defined %}<meta name="keywords" content="{{ site_keywords }}" >{% endif %}
    <link rel="stylesheet" href="{{ url_for("static", file="styles.min.css") }}" type="text/css">
    <link rel="icon" type="image/x-icon" href="data:,">
    {% block meta %}{% endblock %}
    {% endblock %}
</head>
<body>
    <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>
</body>
</html>