summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorSilas Bartha <silas@soaos.dev>2025-05-03 03:53:42 -0400
committerSilas Bartha <silas@soaos.dev>2025-05-03 03:53:42 -0400
commit22592e96a75bd617fe6a9aae146b957695532e7c (patch)
tree5fb31095c224e056471c9f8bf7dd7b46308ffdbd /templates/base.html
parentecec6d23de95423b675bc2960ccd4c3950bb4f5f (diff)
Added piss daemon page
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/templates/base.html b/templates/base.html
deleted file mode 100644
index 793d539..0000000
--- a/templates/base.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8"/>
- <link rel="stylesheet" href="/style.css"/>
- <title>soaos</title>
- <meta property="og:url" content="{{config.base_url | safe}}/{{current_path | safe}}" />
- {% block meta_content %}
- <meta property="og:title" content="soaos" />
- {% endblock meta_content %}
- {% block rss %}
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
- {% endblock %}
- </head>
- <body>
- <section class="section">
- <div class="container">
- {% block content %}
- <a href="{{ get_url(path='@/_index.md') }}"> <- back to landing</a>
- {{ section.content | safe }}
- {% endblock %}
- </div>
- </section>
- </body>
- <footer>
- <hr/>
- <a href="https://evilr.ing/soaos/previous"><</a>
- <a href="https://evilr.ing">EVILRING</a>
- <a href="https://evilr.ing/soaos/next">></a>
- </footer>
-</html>