diff options
| author | Kleidi Bujari <mail@4kb.net> | 2026-06-14 19:12:45 -0700 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2026-06-14 19:12:45 -0700 |
| commit | 4477376496e0d60548ecefa3ac3316b27993a821 (patch) | |
| tree | aed6603ad4e50b3c34c057580a547a3e9d56f878 /packages/blog/templates/base.html | |
| parent | 77439d6670b1964cd7462958a1c8dbefb00aea68 (diff) | |
| download | depot-4477376496e0d60548ecefa3ac3316b27993a821.tar.gz depot-4477376496e0d60548ecefa3ac3316b27993a821.tar.bz2 depot-4477376496e0d60548ecefa3ac3316b27993a821.zip | |
delete dead blog package
Diffstat (limited to 'packages/blog/templates/base.html')
| -rw-r--r-- | packages/blog/templates/base.html | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/packages/blog/templates/base.html b/packages/blog/templates/base.html deleted file mode 100644 index bd23262..0000000 --- a/packages/blog/templates/base.html +++ /dev/null @@ -1,88 +0,0 @@ -<!doctype html> -<html lang="en"> - <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <title>{% block title %}kleidi.ca{% endblock title %}</title> - </head> - <style> - :root { - --bg: #181616; - --fg: #c5c9c5; - --link: #76946a; - --linkhover: #98bb6c; - } - - html { - scroll-behavior: smooth; - color-scheme: dark; - } - - body { - font-family: serif; - padding: 0 0.75em; - max-width: 42em; - margin: auto; - background: var(--bg); - color: var(--fg); - } - - p { - line-height: 1.3em; - } - - th, - td { - padding: 0.2em 0.4em; - border: thin solid; - } - - table { - border: thin solid; - border-collapse: collapse; - } - - a, - a:link { - color: var(--link); - } - - a:hover { - color: var(--linkhover); - } - - article img { - display: block; - margin: 0 auto; - max-width: 80%; - height: auto; - object-fit: contain; - } - - pre { - padding: 1em; - overflow-x: scroll; - } - </style> - <body> - <header - style=" - margin: 3em 0 3em 0; - display: flex; - gap: 8px; - flex-direction: column; - font-family: monospace; - " - > - <span - >Kleidi Bujari <<a href="mailto:mail@4kb.net">mail@4kb.net</a>></span - > - <nav style="display: flex; gap: 8px"> - <span><a href="/">kleidi.ca</a> |</span> - <a target="_blank" href="https://github.com/kbujari">git</a> - <a href="/atom.xml">rss</a> - </nav> - </header> - <main>{% block content %} {% endblock %}</main> - </body> -</html> |
