Keine Beschreibung

base-site-rtl.html 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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="/static/assets/img/apple-icon.png">
  17. <link rel="icon" type="image/png" href="/static/assets/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. <!-- Nucleo Icons -->
  25. <link href="/static/assets/css/nucleo-icons.css" rel="stylesheet" />
  26. <!-- CSS Files -->
  27. <link href="/static/assets/css/black-dashboard.css?v=1.0.0" rel="stylesheet" />
  28. <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-rtl/3.4.0/css/bootstrap-rtl.css" rel="stylesheet" />
  29. <!-- CSS Just for demo purpose, don't include it in your project -->
  30. <link href="/static/assets/demo/demo.css" rel="stylesheet" />
  31. <!-- Specific Page CSS goes HERE -->
  32. {% block stylesheets %}{% endblock stylesheets %}
  33. </head>
  34. <body class="rtl menu-on-right ">
  35. <div class="wrapper">
  36. {% include 'site_template/sidebar-rtl.html' %}
  37. <div class="main-panel">
  38. {% include 'site_template/navigation-rtl.html' %}
  39. <div class="content">
  40. {% block content %}{% endblock content %}
  41. </div>
  42. {% include 'site_template/footer.html' %}
  43. </div>
  44. </div>
  45. {% include 'site_template/fixed-plugin.html' %}
  46. {% include 'site_template/scripts.html' %}
  47. {% include 'site_template/scripts-sidebar.html' %}
  48. <!-- Specific Page JS goes HERE -->
  49. {% block javascripts %}{% endblock javascripts %}
  50. </body>
  51. </html>