base.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <!--
  2. =========================================================
  3. * * Black Dashboard - v1.0.1
  4. =========================================================
  5. * Product Page: https://www.creative-tim.com/product/black-dashboard
  6. * Copyright 2019 Creative Tim (https://www.creative-tim.com)
  7. * Coded by Creative Tim
  8. =========================================================
  9. * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  10. -->
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. <meta charset="utf-8"/>
  15. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  16. <link rel="apple-touch-icon" sizes="76x76" href="{{ config.ASSETS_ROOT }}/img/apple-icon.png">
  17. <link rel="icon" type="image/png" href="{{ config.ASSETS_ROOT }}/img/favicon.png">
  18. <title>
  19. Flask Dashboard Black - {% block title %}{% endblock %} | AppSeed
  20. </title>
  21. <!-- Fonts and icons -->
  22. <link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet"/>
  23. <!-- <link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet"> -->
  24. <link href="{{ config.ASSETS_ROOT }}/css/nucleo-icons.css" rel="stylesheet"/>
  25. <!-- Nucleo Icons -->
  26. <link href="{{ config.ASSETS_ROOT }}/css/nucleo-icons.css" rel="stylesheet"/>
  27. <!-- CSS Files -->
  28. <link href="{{ config.ASSETS_ROOT }}/css/black-dashboard.css?v=1.0.0" rel="stylesheet"/>
  29. <link href="{{ config.ASSETS_ROOT }}/css/theme-switcher.css" rel="stylesheet"/>
  30. <!-- CSS Just for demo purpose, don't include it in your project -->
  31. <!-- <link href="{{ config.ASSETS_ROOT }}/demo/demo.css" rel="stylesheet"/> -->
  32. <link href="{{ config.ASSETS_ROOT }}/test.css" rel="stylesheet"/>
  33. <!-- Specific Page CSS goes HERE -->
  34. {% block stylesheets %}{% endblock stylesheets %}
  35. {% block extra_js %}{% endblock extra_js %}
  36. </head>
  37. <body class="">
  38. <div class="wrapper">
  39. {% include 'includes/sidebar.html' %}
  40. <div class="main-panel">
  41. {% include 'includes/navigation.html' %}
  42. {% block content %}{% endblock content %}
  43. {% include 'includes/footer.html' %}
  44. </div>
  45. </div>
  46. {% include 'includes/fixed-plugin.html' %}
  47. {% include 'includes/scripts.html' %}
  48. <!-- Specific Page JS goes HERE -->
  49. {% block javascripts %}{% endblock javascripts %}
  50. </body>
  51. </html>