Redmind commited on
Commit
7284c69
·
verified ·
1 Parent(s): 008c57d

Update templates/dashboard.html

Browse files
Files changed (1) hide show
  1. templates/dashboard.html +25 -1
templates/dashboard.html CHANGED
@@ -1,4 +1,28 @@
1
- <body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  {% include 'sidepane.html' %}
4
 
 
1
+ !DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Dashboard</title>
6
+ <!-- AdminLTE CSS -->
7
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/admin-lte/3.1.0/css/adminlte.min.css">
8
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
9
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
10
+ <style>
11
+ html, body {
12
+ height: 100%;
13
+ margin: 0;
14
+ display: flex;
15
+ flex-direction: column;
16
+ }
17
+ .wrapper {
18
+ flex: 1; /* This allows the content to grow and push the footer down */
19
+ padding: 10px;
20
+ margin-left: -35px;
21
+ }
22
+
23
+ </style>
24
+ </head>
25
+ <body>
26
 
27
  {% include 'sidepane.html' %}
28