Skip to content

Commit 7e1a171

Browse files
chore: Add sb-admin theme
1 parent f4fe2f0 commit 7e1a171

45 files changed

Lines changed: 97697 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

pythoncms/static/themes/back/sbadmin/404.html

Lines changed: 430 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013-2021 Start Bootstrap LLC
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta
7+
name="viewport"
8+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
9+
/>
10+
<meta name="description" content="" />
11+
<meta name="author" content="" />
12+
13+
<title>SB Admin 2 - Login</title>
14+
15+
<!-- Custom fonts for this template-->
16+
<link
17+
href="{{url_for('static', filename='themes/back/sbadmin/vendor/fontawesome-free/css/all.min.css')}}"
18+
rel="stylesheet"
19+
type="text/css"
20+
/>
21+
<link
22+
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
23+
rel="stylesheet"
24+
/>
25+
26+
<!-- Custom styles for this template-->
27+
<link
28+
href="{{url_for('static', filename='themes/back/sbadmin/css/sb-admin-2.min.css')}}"
29+
rel="stylesheet"
30+
/>
31+
</head>
32+
33+
<body class="bg-gradient-primary">
34+
<div class="container">
35+
<!-- Outer Row -->
36+
<div class="row justify-content-center">
37+
<div class="col-xl-10 col-lg-12 col-md-9">
38+
<div class="card o-hidden border-0 shadow-lg my-5">
39+
<div class="card-body p-0">
40+
<!-- Nested Row within Card Body -->
41+
42+
<div class="">
43+
<div class="p-5">
44+
{%block content%}
45+
46+
{%endblock%}
47+
</div>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
</div>
53+
</div>
54+
55+
<!-- Bootstrap core JavaScript-->
56+
<script src="{{url_for('static', filename='themes/back/sbadmin/vendor/jquery/jquery.min.js')}}"></script>
57+
<script src="{{url_for('static', filename='themes/back/sbadmin/vendor/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
58+
59+
<!-- Core plugin JavaScript-->
60+
<script src="{{url_for('static', filename='themes/back/sbadmin/vendor/jquery-easing/jquery.easing.min.js')}}"></script>
61+
62+
<!-- Custom scripts for all pages-->
63+
<script src="{{url_for('static', filename='themes/back/sbadmin/js/sb-admin-2.min.js')}}"></script>
64+
</body>
65+
</html>

0 commit comments

Comments
 (0)