Codebase Update

This commit is contained in:
App Generator
2023-06-06 11:03:31 +03:00
parent 3e51831eab
commit 40a4fe974f
231 changed files with 35693 additions and 125 deletions

View File

@ -0,0 +1,68 @@
<!--
=========================================================
* * Black Dashboard - v1.0.1
=========================================================
* Product Page: https://www.creative-tim.com/product/black-dashboard
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="{{ config.ASSETS_ROOT }}/img/apple-icon.png">
<link rel="icon" type="image/png" href="{{ config.ASSETS_ROOT }}/img/favicon.png">
<title>
Flask Dashboard Black - {% block title %}{% endblock %} | AppSeed
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet"/>
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- Nucleo Icons -->
<link href="{{ config.ASSETS_ROOT }}/css/nucleo-icons.css" rel="stylesheet"/>
<!-- CSS Files -->
<link href="{{ config.ASSETS_ROOT }}/css/black-dashboard.css?v=1.0.0" rel="stylesheet"/>
<link href="{{ config.ASSETS_ROOT }}/css/theme-switcher.css" rel="stylesheet"/>
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="{{ config.ASSETS_ROOT }}/demo/demo.css" rel="stylesheet"/>
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body class="">
<div class="wrapper">
{% include 'includes/navigation-fullscreen.html' %}
<div class="container-fluid">
{% block content %}{% endblock content %}
{% include 'includes/footer-fullscreen.html' %}
</div>
</div>
{% include 'includes/fixed-plugin.html' %}
{% include 'includes/scripts.html' %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}
</body>
</html>

View File

@ -0,0 +1,71 @@
<!--
=========================================================
* * Black Dashboard - v1.0.1
=========================================================
* Product Page: https://www.creative-tim.com/product/black-dashboard
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="{{ config.ASSETS_ROOT }}/img/apple-icon.png">
<link rel="icon" type="image/png" href="{{ config.ASSETS_ROOT }}/img/favicon.png">
<title>
Flask Dashboard Black - {% block title %}{% endblock %} | AppSeed
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet" />
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- Nucleo Icons -->
<link href="{{ config.ASSETS_ROOT }}/css/nucleo-icons.css" rel="stylesheet" />
<!-- CSS Files -->
<link href="{{ config.ASSETS_ROOT }}/css/black-dashboard.css?v=1.0.0" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css" rel="stylesheet" />
<link href="{{ config.ASSETS_ROOT }}/css/theme-switcher.css" rel="stylesheet"/>
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="{{ config.ASSETS_ROOT }}/demo/demo.css" rel="stylesheet" />
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body class=" rtl menu-on-right ">
<div class="wrapper">
{% include 'includes/sidebar-rtl.html' %}
<div class="main-panel">
{% include 'includes/navigation-rtl.html' %}
{% block content %}{% endblock content %}
{% include 'includes/footer.html' %}
</div>
</div>
{% include 'includes/fixed-plugin.html' %}
{% include 'includes/scripts.html' %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}
</body>
</html>

View File

@ -0,0 +1,69 @@
<!--
=========================================================
* * Black Dashboard - v1.0.1
=========================================================
* Product Page: https://www.creative-tim.com/product/black-dashboard
* Copyright 2019 Creative Tim (https://www.creative-tim.com)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="{{ config.ASSETS_ROOT }}/img/apple-icon.png">
<link rel="icon" type="image/png" href="{{ config.ASSETS_ROOT }}/img/favicon.png">
<title>
Flask Dashboard Black - {% block title %}{% endblock %} | AppSeed
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet"/>
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- Nucleo Icons -->
<link href="{{ config.ASSETS_ROOT }}/css/nucleo-icons.css" rel="stylesheet"/>
<!-- CSS Files -->
<link href="{{ config.ASSETS_ROOT }}/css/black-dashboard.css?v=1.0.0" rel="stylesheet"/>
<link href="{{ config.ASSETS_ROOT }}/css/theme-switcher.css" rel="stylesheet"/>
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="{{ config.ASSETS_ROOT }}/demo/demo.css" rel="stylesheet"/>
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body class="">
<div class="wrapper">
{% include 'includes/sidebar.html' %}
<div class="main-panel">
{% include 'includes/navigation.html' %}
{% block content %}{% endblock content %}
{% include 'includes/footer.html' %}
</div>
</div>
{% include 'includes/fixed-plugin.html' %}
{% include 'includes/scripts.html' %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}
</body>
</html>