summaryrefslogtreecommitdiff
path: root/web/templates/base.html
diff options
context:
space:
mode:
authorDominic DiTaranto <domdit@gmail.com>2024-10-28 11:36:09 -0400
committerDominic DiTaranto <domdit@gmail.com>2024-10-28 11:36:09 -0400
commit286161b0912007c6f3859868a006e9818752a4aa (patch)
treed016592f7fa38b93f15e818586a9d294d80b6f3c /web/templates/base.html
init commit
Diffstat (limited to 'web/templates/base.html')
-rw-r--r--web/templates/base.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/web/templates/base.html b/web/templates/base.html
new file mode 100644
index 0000000..d6ba2da
--- /dev/null
+++ b/web/templates/base.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Korabo</title>
+ {% load static %}
+ {% load bootstrap5 %}
+ {% bootstrap_css %}
+ {% bootstrap_javascript %}
+</head>
+<body style="min-height: 100%">
+
+ <div class="container mt-4" style="min-height:85vh">
+
+ <h1 style="margin-bottom:-8px;">Korabo</h1>
+ <div style="float:left;">
+
+ <small>~make it easy with コラボ~</small>
+ </div>
+ <div style="float:right;">
+ <a href="{% url 'index' %}">home</a> |
+ <a href="{% url 'logout' %}">logout</a>
+
+ </div>
+
+ <div style="clear:both;"></div>
+ <hr>
+
+ <br>
+ {% block content %}{% endblock %}
+ </div>
+
+ <div>
+ <small class="p-5">Version 1.0 | Created By <a href="https://www.domdit.com" target="_blank">Dominic DiTaranto</a> | Questions/Suggestions: me@domdit.com | Last Update 09/22/2024</small>
+ </div>
+
+</body>
+</html> \ No newline at end of file