summaryrefslogtreecommitdiff
path: root/django/uvdj/uvdjango/uvdjango/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'django/uvdj/uvdjango/uvdjango/templates/layout.html')
-rw-r--r--django/uvdj/uvdjango/uvdjango/templates/layout.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/django/uvdj/uvdjango/uvdjango/templates/layout.html b/django/uvdj/uvdjango/uvdjango/templates/layout.html
new file mode 100644
index 0000000..541a730
--- /dev/null
+++ b/django/uvdj/uvdjango/uvdjango/templates/layout.html
@@ -0,0 +1,23 @@
+{% load static %}
+<!DOCTYPE html>
+<html lang="en" data-bs-theme="dark">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
+
+ <title>
+ {% block title %}
+ Hello
+ {% endblock %}
+ </title>
+
+ </head>
+ <body>
+ <div class="container text-center mt-4">
+ {% block content %}
+ {% endblock %}
+ </div>
+ </body>
+</html>