Browse Source

build, demo, editorconfig fixes, flat fallback

codecalm 5 years ago
parent
commit
60d22b56a1
10 changed files with 4447 additions and 3412 deletions
  1. 1 1
      .editorconfig
  2. 11 0
      build/copy-libs.js
  3. 30 86
      demo/404.html
  4. 670 529
      demo/all.html
  5. 396 245
      demo/blank.html
  6. 584 401
      demo/blog.html
  7. 1087 936
      demo/buttons.html
  8. 404 253
      demo/calendar.html
  9. 737 585
      demo/cards.html
  10. 527 376
      demo/carousel.html

+ 1 - 1
.editorconfig

@@ -19,7 +19,7 @@ insert_final_newline=false
 indent_style=tab
 tab_width=3
 
-[{*.rb,*.yml}]
+[{*.rb,*.yml,*,scss}]
 indent_style=space
 indent_size=2
 

+ 11 - 0
build/copy-libs.js

@@ -1,3 +1,14 @@
+if (!Array.prototype.flat) {
+	Object.defineProperty(Array.prototype, 'flat', {
+		value: function(depth = 1) {
+			return this.reduce(function (flat, toFlatten) {
+				return flat.concat((Array.isArray(toFlatten) && (depth>1)) ? toFlatten.flat(depth-1) : toFlatten);
+			}, []);
+		}
+	});
+}
+
+
 const all_libs = require('../pages/_data/libs'),
   path = require('path'),
   { exec } = require('child_process');

+ 30 - 86
demo/404.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,102 +25,46 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Page 404 - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased  border-top-2 border-primary">
-    <div class="empty">
-      <div class="empty-icon">
-        <div class="display-4">404</div>
-      </div>
-      <p class="empty-title h3">Oops&hellip; You just found an error page</p>
-      <p class="empty-subtitle text-muted">
-        We are sorry but the page you are looking for was not found
-      </p>
-      <div class="empty-action">
-        <a href="#" class="btn btn-primary">
-          Search again
-        </a>
+  <body class="antialiased border-top-wide border-primary">
+    <div class="d-flex align-items-center justify-content-center min-vh-100">
+      <div class="empty">
+        <div class="empty-icon">
+          <div class="display-4">404</div>
+        </div>
+        <p class="empty-title h3">Oops&hellip; You just found an error page</p>
+        <p class="empty-subtitle text-muted">
+          We are sorry but the page you are looking for was not found
+        </p>
+        <div class="empty-action">
+          <a href="./index.html" class="btn btn-primary">
+            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>
+            Take me home
+          </a>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
-    <script>
-      document.addEventListener("DOMContentLoaded", function(event) {
-         window.ApexCharts && (new ApexCharts(document.getElementById('chart-revenue-bg'), {
-            chart: {
-               type: 'area',
-               height: 40.0,
-            sparkline: {
-               enabled: true
-            },
-            },
-            fill: {
-               opacity: .16
-            },
-            series: [{
-               name: 'Profits',
-               data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 19, 46, 39, 62, 51, 35, 41, 67]
-            }],
-            xaxis: {
-               type: 'datetime',
-            },
-            labels: [...Array(30).keys()].map(n => `2019-09-${n+1}`),
-            colors: [
-               tabler.colors["blue"]
-            ],
-         })).render();
-      });
-    </script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

+ 670 - 529
demo/all.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,562 +25,703 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Index - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
-                  </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
-                  </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
-              </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
          class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
-              </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
-         aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
-                </a>
-              </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <!-- Page title -->
-          <div class="page-title-box">
-            <div class="row align-items-center">
-              <div class="col-auto">
-                <h2 class="page-title">
-                  Index
-                </h2>
-              </div>
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
+                  </div>
+                </li>
+              </ul>
             </div>
           </div>
-          <div class="row row justify-content-center mt-3 mt-lg-5">
-            <div class="col-lg-6 col-xl-5">
-              <div class="card">
-                <div class="card-header">
-                  <h2 class="card-title">
-                    All pages
-                  </h2>
-                </div>
-                <div class="card-body">
-                  <ul>
-                    <li>
-                      <a href="/components/index.html">
-                        redirect.html
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/tmp.html">
-                        tmp.html
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layouts.html">
-                        layouts.html
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/redirects.json">
-                        redirects.json
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/blank.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Blank page
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/blog.html">
-                        Blog
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/buttons.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
                         Buttons
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/calendar.html">
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
                         Calendar
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/cards.html">
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
                         Cards
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/carousel.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
                         Carousel
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/changelog.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Changelog
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/charts.html">
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
                         Charts
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/crypto-currencies.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Crypto currencies
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-header-dark.html">
-                        Dark header
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-dark-mode.html">
-                        Dark mode
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/docs.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Documentation
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/dropdowns.html">
-                        Dropdowns
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/email.html">
-                        Email
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/empty.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Empty page
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/flags.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
                         Flags
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-navbar-folded.html">
-                        Folded sidebar
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/forgot-password.html">
-                        Forgot password
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/form-elements.html">
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
                         Form elements
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/gallery.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Gallery
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/charts-heatmap.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Heatmap Charts
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/homepage.html">
-                        Homepage
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/icons.html">
-                        Icons
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/all.html">
-                        Index
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/invoice.html">
-                        Invoice
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-test.html">
-                        Layout test
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/login.html">
-                        Login
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/lookup.html">
-                        Lookup company
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/maintenance.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Maintenance mode
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/maps.html">
-                        Maps
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-navbar-top.html">
-                        Navbar top
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/404.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Page 404
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/pagination.html">
-                        Pagination
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/pricing.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Pricing cards
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/profile.html">
-                        Profile
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/rtl.html">
-                        RTL mode
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/register.html">
-                        Register
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/ribbons.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
                         Ribbons
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-navbar-left.html">
-                        Sidebar left
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-navbar-right.html">
-                        Sidebar right
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-navbar-dark.html">
-                        Sidebar white
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/snippets.html">
-                        Snippets
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/social.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Social elements
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/layout-header-sticky.html">
-                        Sticky header
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/store.html">
-                        Store
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/components.html">
-                        Table UI components
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/tabs.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
                         Tabs
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/typography.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
                         Typography
-                      </a>
-                    </li>
-                    <li>
-                      <a href="/users.html">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
-                        Users list
-                      </a>
-                    </li>
-                  </ul>
-                </div>
+                      </span>
+                    </a>
+                  </div>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
+                  </div>
+                </form>
               </div>
             </div>
           </div>
-        </main>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <!-- Page title -->
+            <div class="page-title-box">
+              <div class="row align-items-center">
+                <div class="col-auto">
+                  <h2 class="page-title">
+                    Index
+                  </h2>
+                </div>
+              </div>
+            </div>
+            <div class="row row justify-content-center mt-3 mt-lg-5">
+              <div class="col-lg-6 col-xl-5">
+                <div class="card">
+                  <div class="card-header">
+                    <h2 class="card-title">
+                      All pages
+                    </h2>
+                  </div>
+                  <div class="card-body">
+                    <ul>
+                      <li>
+                        <a href="/redirects.json">
+                          redirects.json
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/components/index.html">
+                          redirect.html
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/layouts.html">
+                          layouts.html
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/blank.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Blank page
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/blog.html">
+                          Blog
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/buttons.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Buttons
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/calendar.html">
+                          Calendar
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/cards.html">
+                          Cards
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/carousel.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Carousel
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/changelog.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Changelog
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/charts.html">
+                          Charts
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/crypto-currencies.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Crypto currencies
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/docs.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Documentation
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/dropdowns.html">
+                          Dropdowns
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/email.html">
+                          Email
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/empty.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Empty page
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/flags.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Flags
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/forgot-password.html">
+                          Forgot password
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/form-elements.html">
+                          Form elements
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/gallery.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Gallery
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/charts-heatmap.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Heatmap Charts
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/homepage.html">
+                          Homepage
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/icons.html">
+                          Icons
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/all.html">
+                          Index
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/invoice.html">
+                          Invoice
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/layout-test.html">
+                          Layout test
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/login.html">
+                          Login
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/lookup.html">
+                          Lookup company
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/maintenance.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Maintenance mode
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/maps.html">
+                          Maps
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/markdown.html">
+                          Markdown
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/400.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 400
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/401.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 401
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/403.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 403
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/404.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 404
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/500.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 500
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/503.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Page 503
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/pagination.html">
+                          Pagination
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/pricing.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Pricing cards
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/profile.html">
+                          Profile
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/rtl.html">
+                          RTL mode
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/register.html">
+                          Register
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/ribbons.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Ribbons
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/snippets.html">
+                          Snippets
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/social.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Social elements
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/store.html">
+                          Store
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/components.html">
+                          Table UI components
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/tabs.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Tabs
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/typography.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Typography
+                        </a>
+                      </li>
+                      <li>
+                        <a href="/users.html">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon text-success"><polyline points="20 6 9 17 4 12"></polyline></svg>
+                          Users list
+                        </a>
+                      </li>
+                    </ul>
+                  </div>
+                </div>
+              </div>
+            </div>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

+ 396 - 245
demo/blank.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,269 +25,420 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Blank page - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
+         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
+                  </div>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
+                        Calendar
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
+                        Carousel
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
+                        Charts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
+                        Flags
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
+                        Form elements
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
+                        Ribbons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
+                        Tabs
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
+                        Typography
+                      </span>
+                    </a>
                   </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
                   </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
+                </form>
               </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
-         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
+            </div>
+          </div>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <div class="empty">
+              <div class="empty-icon">
+                <img src="./img/illustrations/undraw_printing_invoices_5r4r.svg" class="h-8 mb-4" alt="">
               </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
-         aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
+              <p class="empty-title h3">No results found</p>
+              <p class="empty-subtitle text-muted">
+                Try adjusting your search or filter to find what you're looking for.
+              </p>
+              <div class="empty-action">
+                <a href="./index.html" class="btn btn-primary">
+                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
+                  Add your first client
                 </a>
               </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <div class="empty">
-            <div class="empty-icon">
-              <img src="./img/illustrations/undraw_printing_invoices_5r4r.svg" class="h-8 mb-4" alt="">
-            </div>
-            <p class="empty-title h3">No results found</p>
-            <p class="empty-subtitle text-muted">
-              Try adjusting your search or filter to find what you're looking for.
-            </p>
-            <div class="empty-action">
-              <a href="#" class="btn btn-primary">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
-                Add your first client
-              </a>
             </div>
-          </div>
-        </main>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

File diff suppressed because it is too large
+ 584 - 401
demo/blog.html


+ 1087 - 936
demo/buttons.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,984 +25,1135 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Buttons - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
+         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
                   </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
                   </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
-              </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
-         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
-              </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
          aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
-                </a>
-              </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <div class="row">
-            <div class="col-12">
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Standard Buttons</h3>
-                </div>
-                <div class="card-body">
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-primary btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-secondary btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-success btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-warning btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-danger btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-info btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-light btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-dark btn-block">
-                        Dark
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-link btn-block">
-                        Link
-                      </a>
-                    </div>
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
+                        Calendar
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-primary active btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-secondary active btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-success active btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-warning active btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-danger active btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-info active btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-light active btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-dark active btn-block">
-                        Dark
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-link active btn-block">
-                        Link
-                      </a>
-                    </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-primary disabled btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-secondary disabled btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-success disabled btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-warning disabled btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-danger disabled btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-info disabled btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-light disabled btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-dark disabled btn-block">
-                        Dark
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-link disabled btn-block">
-                        Link
-                      </a>
-                    </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
+                        Carousel
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
+                        Charts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
+                        Flags
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
+                        Form elements
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
+                        Ribbons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
+                        Tabs
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
+                        Typography
+                      </span>
+                    </a>
                   </div>
-                </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Outline Buttons</h3>
-                </div>
-                <div class="card-body">
-                  <p>Use <code>.btn-outline-*</code> class for outline buttons.
-                  </p>
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-primary btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-secondary btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-success btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-warning btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-danger btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-info btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-light btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-dark btn-block">
-                        Dark
-                      </a>
-                    </div>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-primary active btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-secondary active btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-success active btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-warning active btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-danger active btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-info active btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-light active btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-dark active btn-block">
-                        Dark
-                      </a>
-                    </div>
+                </form>
+              </div>
+            </div>
+          </div>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <div class="row">
+              <div class="col-12">
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Standard Buttons</h3>
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-primary disabled btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-secondary disabled btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-success disabled btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-warning disabled btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-danger disabled btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-info disabled btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-light disabled btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-outline-dark disabled btn-block">
-                        Dark
-                      </a>
+                  <div class="card-body">
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-primary btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-secondary btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-success btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-warning btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-danger btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-info btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-light btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-dark btn-block">
+                          Dark
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-link btn-block">
+                          Link
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-primary active btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-secondary active btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-success active btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-warning active btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-danger active btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-info active btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-light active btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-dark active btn-block">
+                          Dark
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-link active btn-block">
+                          Link
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-primary disabled btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-secondary disabled btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-success disabled btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-warning disabled btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-danger disabled btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-info disabled btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-light disabled btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-dark disabled btn-block">
+                          Dark
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-link disabled btn-block">
+                          Link
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Ghost Buttons</h3>
-                </div>
-                <div class="card-body">
-                  <p>Use <code>.btn-ghost-*</code> class for ghost buttons.
-                  </p>
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-primary btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-secondary btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-success btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-warning btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-danger btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-info btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-light btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-dark btn-block">
-                        Dark
-                      </a>
-                    </div>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Outline Buttons</h3>
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-primary active btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-secondary active btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-success active btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-warning active btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-danger active btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-info active btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-light active btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-dark active btn-block">
-                        Dark
-                      </a>
+                  <div class="card-body">
+                    <p>Use <code>.btn-outline-*</code> class for outline buttons.
+                    </p>
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-primary btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-secondary btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-success btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-warning btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-danger btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-info btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-light btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-dark btn-block">
+                          Dark
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-primary active btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-secondary active btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-success active btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-warning active btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-danger active btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-info active btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-light active btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-dark active btn-block">
+                          Dark
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-primary disabled btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-secondary disabled btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-success disabled btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-warning disabled btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-danger disabled btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-info disabled btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-light disabled btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-outline-dark disabled btn-block">
+                          Dark
+                        </a>
+                      </div>
                     </div>
                   </div>
-                  <div class="row row-sm align-items-center mb-n3 mt-3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-primary disabled btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-secondary disabled btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-success disabled btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-warning disabled btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-danger disabled btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-info disabled btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-light disabled btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-ghost-dark disabled btn-block">
-                        Dark
-                      </a>
+                </div>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Ghost Buttons</h3>
+                  </div>
+                  <div class="card-body">
+                    <p>Use <code>.btn-ghost-*</code> class for ghost buttons.
+                    </p>
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-primary btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-secondary btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-success btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-warning btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-danger btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-info btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-light btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-dark btn-block">
+                          Dark
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Active state</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-primary active btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-secondary active btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-success active btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-warning active btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-danger active btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-info active btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-light active btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-dark active btn-block">
+                          Dark
+                        </a>
+                      </div>
+                    </div>
+                    <div class="row row-sm align-items-center mb-n3 mt-3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Disabled</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-primary disabled btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-secondary disabled btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-success disabled btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-warning disabled btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-danger disabled btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-info disabled btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-light disabled btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-ghost-dark disabled btn-block">
+                          Dark
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Square Buttons</h3>
-                </div>
-                <div class="card-body">
-                  <p>Use <code>.btn-square</code> class for square buttons.
-                  </p>
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-primary btn-square btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-secondary btn-square btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-success btn-square btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-warning btn-square btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-danger btn-square btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-info btn-square btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-light btn-square btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-dark btn-square btn-block">
-                        Dark
-                      </a>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Square Buttons</h3>
+                  </div>
+                  <div class="card-body">
+                    <p>Use <code>.btn-square</code> class for square buttons.
+                    </p>
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-primary btn-square btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-secondary btn-square btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-success btn-square btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-warning btn-square btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-danger btn-square btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-info btn-square btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-light btn-square btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-dark btn-square btn-block">
+                          Dark
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Pill Buttons</h3>
-                </div>
-                <div class="card-body">
-                  <p>Use <code>.btn-pill</code> class for pill buttons.
-                  </p>
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-primary btn-pill btn-block">
-                        Primary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-secondary btn-pill btn-block">
-                        Secondary
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-success btn-pill btn-block">
-                        Success
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-warning btn-pill btn-block">
-                        Warning
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-danger btn-pill btn-block">
-                        Danger
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-info btn-pill btn-block">
-                        Info
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-light btn-pill btn-block">
-                        Light
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
-                      <a href="#" class="btn btn-dark btn-pill btn-block">
-                        Dark
-                      </a>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Pill Buttons</h3>
+                  </div>
+                  <div class="card-body">
+                    <p>Use <code>.btn-pill</code> class for pill buttons.
+                    </p>
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-12 col-xl-2 mb-3 font-weight-semibold">Normal</div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-primary btn-pill btn-block">
+                          Primary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-secondary btn-pill btn-block">
+                          Secondary
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-success btn-pill btn-block">
+                          Success
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-warning btn-pill btn-block">
+                          Warning
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-danger btn-pill btn-block">
+                          Danger
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-info btn-pill btn-block">
+                          Info
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-light btn-pill btn-block">
+                          Light
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl mb-3">
+                        <a href="#" class="btn btn-dark btn-pill btn-block">
+                          Dark
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Extra colors</h3>
-                </div>
-                <div class="card-body">
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-blue btn-block">
-                        Blue
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-azure btn-block">
-                        Azure
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-indigo btn-block">
-                        Indigo
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-purple btn-block">
-                        Purple
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-pink btn-block">
-                        Pink
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-red btn-block">
-                        Red
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-orange btn-block">
-                        Orange
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-yellow btn-block">
-                        Yellow
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-lime btn-block">
-                        Lime
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-green btn-block">
-                        Green
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-teal btn-block">
-                        Teal
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-cyan btn-block">
-                        Cyan
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-gray btn-block">
-                        Gray
-                      </a>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Extra colors</h3>
+                  </div>
+                  <div class="card-body">
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-blue btn-block">
+                          Blue
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-azure btn-block">
+                          Azure
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-indigo btn-block">
+                          Indigo
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-purple btn-block">
+                          Purple
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-pink btn-block">
+                          Pink
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-red btn-block">
+                          Red
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-orange btn-block">
+                          Orange
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-yellow btn-block">
+                          Yellow
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-lime btn-block">
+                          Lime
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-green btn-block">
+                          Green
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-teal btn-block">
+                          Teal
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-cyan btn-block">
+                          Cyan
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-gray btn-block">
+                          Gray
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Social colors</h3>
-                </div>
-                <div class="card-body">
-                  <div class="row row-sm align-items-center mb-n3">
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-facebook btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0"/>
-                        </svg>
-                        Facebook
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-twitter btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M23.954 4.569a10 10 0 0 1-2.825.775 4.958 4.958 0 0 0 2.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 0 0-8.384 4.482C7.691 8.094 4.066 6.13 1.64 3.161a4.822 4.822 0 0 0-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 0 1-2.228-.616v.061a4.923 4.923 0 0 0 3.946 4.827 4.996 4.996 0 0 1-2.212.085 4.937 4.937 0 0 0 4.604 3.417 9.868 9.868 0 0 1-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 0 0 7.557 2.209c9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63a9.936 9.936 0 0 0 2.46-2.548l-.047-.02z"/>
-                        </svg>
-                        Twitter
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-google btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M12.24 10.285V14.4h6.806c-.275 1.765-2.056 5.174-6.806 5.174-4.095 0-7.439-3.389-7.439-7.574s3.345-7.574 7.439-7.574c2.33 0 3.891.989 4.785 1.849l3.254-3.138C18.189 1.186 15.479 0 12.24 0c-6.635 0-12 5.365-12 12s5.365 12 12 12c6.926 0 11.52-4.869 11.52-11.726 0-.788-.085-1.39-.189-1.989H12.24z"/>
-                        </svg>
-                        Google
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-youtube btn-block">
-                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="icon" fill="currentColor">
-                          <path d="M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z"/>
-                        </svg>
-                        Youtube
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-vimeo btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M23.977 6.416c-.105 2.338-1.739 5.543-4.894 9.609-3.268 4.247-6.026 6.37-8.29 6.37-1.409 0-2.578-1.294-3.553-3.881L5.322 11.4C4.603 8.816 3.834 7.522 3.01 7.522c-.179 0-.806.378-1.881 1.132L0 7.197a315.065 315.065 0 0 0 3.501-3.128C5.08 2.701 6.266 1.984 7.055 1.91c1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.507.539 2.45 1.131 3.674 1.776 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.868 3.434-5.757 6.762-5.637 2.473.06 3.628 1.664 3.493 4.797l-.013.01z"/>
-                        </svg>
-                        Vimeo
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-dribbble btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308a10.28 10.28 0 0 0 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4a10.161 10.161 0 0 0 6.29 2.166c1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248a65.473 65.473 0 0 0-3.8-5.928 10.275 10.275 0 0 0-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702A10.19 10.19 0 0 0 12 1.764c-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/>
-                        </svg>
-                        Dribbble
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-github btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
-                        </svg>
-                        Github
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-instagram btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913a5.885 5.885 0 0 0 1.384 2.126A5.868 5.868 0 0 0 4.14 23.37c.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558a5.898 5.898 0 0 0 2.126-1.384 5.86 5.86 0 0 0 1.384-2.126c.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913a5.89 5.89 0 0 0-1.384-2.126A5.847 5.847 0 0 0 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227a3.81 3.81 0 0 1-.899 1.382 3.744 3.744 0 0 1-1.38.896c-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421a3.716 3.716 0 0 1-1.379-.899 3.644 3.644 0 0 1-.9-1.38c-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 1 0 0-12.324zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405a1.441 1.441 0 0 1-2.88 0 1.44 1.44 0 0 1 2.88 0z"/>
-                        </svg>
-                        Instagram
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-pinterest btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/>
-                        </svg>
-                        Pinterest
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-vk btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M11.701 18.771h1.437s.433-.047.654-.284c.21-.221.21-.63.21-.63s-.031-1.927.869-2.21c.887-.281 2.012 1.86 3.211 2.683.916.629 1.605.494 1.605.494l3.211-.044s1.682-.105.887-1.426c-.061-.105-.451-.975-2.371-2.76-2.012-1.861-1.742-1.561.676-4.787 1.469-1.965 2.07-3.166 1.875-3.676-.166-.48-1.26-.361-1.26-.361l-3.602.031s-.27-.031-.465.09c-.195.119-.314.391-.314.391s-.572 1.529-1.336 2.82c-1.623 2.729-2.268 2.879-2.523 2.699-.604-.391-.449-1.58-.449-2.432 0-2.641.404-3.75-.781-4.035-.39-.091-.681-.15-1.685-.166-1.29-.014-2.378.01-2.995.311-.405.203-.72.652-.539.675.24.03.779.146 1.064.537.375.506.359 1.636.359 1.636s.211 3.116-.494 3.503c-.495.262-1.155-.28-2.595-2.756-.735-1.26-1.291-2.67-1.291-2.67s-.105-.256-.299-.406c-.227-.165-.557-.225-.557-.225l-3.435.03s-.51.016-.689.24c-.166.195-.016.615-.016.615s2.686 6.287 5.732 9.453c2.79 2.902 5.956 2.715 5.956 2.715l-.05-.055z"/>
-                        </svg>
-                        VK
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-rss btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415a3.3 3.3 0 0 1 3.293 3.295A3.303 3.303 0 0 1 3.283 24C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/>
-                        </svg>
-                        RSS
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-flickr btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M0 12a5.565 5.565 0 0 0 5.565 5.564c3.075 0 5.569-2.49 5.569-5.564S8.641 6.436 5.565 6.436A5.566 5.566 0 0 0 0 12zm12.866 0a5.565 5.565 0 0 0 5.567 5.564C21.496 17.564 24 15.074 24 12s-2.492-5.564-5.564-5.564A5.567 5.567 0 0 0 12.866 12z"/>
-                        </svg>
-                        Flickr
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-bitbucket btn-block">
-                        <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
-                          <path d="M.778 1.211a.768.768 0 0 0-.768.892l3.263 19.811c.084.499.515.867 1.022.872H19.95a.772.772 0 0 0 .77-.646l3.27-20.03a.768.768 0 0 0-.768-.891L.778 1.211zM14.52 15.528H9.522L8.17 8.464h7.561l-1.211 7.064z"/>
-                        </svg>
-                        Bitbucker
-                      </a>
-                    </div>
-                    <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
-                      <a href="#" class="btn btn-tabler btn-block">
-                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="icon" fill="currentColor">
-                          <path d="M23.5 5.3C22.9 3 21 1.1 18.7.5 14.3-.2 9.8-.2 5.4.5 3 1.1 1.1 3 .5 5.3c-.7 4.4-.7 8.9 0 13.3.6 2.4 2.5 4.3 4.8 4.9 4.4.7 8.9.7 13.3 0 2.4-.6 4.2-2.4 4.8-4.8.8-4.5.8-8.9.1-13.4zm-11.8 7.6c-1 1.6-2.5 3.1-4.2 4.1-.6.3-1.2.3-1.8 0s-.9-.9-.9-1.5.3-1.2.9-1.5c.9-.5 1.6-1.2 2.3-2-.7-.8-1.4-1.4-2.3-2-.8-.5-1.1-1.6-.6-2.4S6.7 6.5 7.5 7c1.7 1 3.1 2.4 4.2 4.1.4.5.4 1.2 0 1.8zm6 3.6h-4.3c-.8 0-1.4-.4-1.4-1.1 0-.7.6-1.1 1.4-1.1h4.3c.8 0 1.4.4 1.4 1.1 0 .7-.6 1.1-1.4 1.1z"/>
-                        </svg>
-                        Tabler
-                      </a>
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Social colors</h3>
+                  </div>
+                  <div class="card-body">
+                    <div class="row row-sm align-items-center mb-n3">
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-facebook btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0"/>
+                          </svg>
+                          Facebook
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-twitter btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M23.954 4.569a10 10 0 0 1-2.825.775 4.958 4.958 0 0 0 2.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 0 0-8.384 4.482C7.691 8.094 4.066 6.13 1.64 3.161a4.822 4.822 0 0 0-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 0 1-2.228-.616v.061a4.923 4.923 0 0 0 3.946 4.827 4.996 4.996 0 0 1-2.212.085 4.937 4.937 0 0 0 4.604 3.417 9.868 9.868 0 0 1-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 0 0 7.557 2.209c9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63a9.936 9.936 0 0 0 2.46-2.548l-.047-.02z"/>
+                          </svg>
+                          Twitter
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-google btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M12.24 10.285V14.4h6.806c-.275 1.765-2.056 5.174-6.806 5.174-4.095 0-7.439-3.389-7.439-7.574s3.345-7.574 7.439-7.574c2.33 0 3.891.989 4.785 1.849l3.254-3.138C18.189 1.186 15.479 0 12.24 0c-6.635 0-12 5.365-12 12s5.365 12 12 12c6.926 0 11.52-4.869 11.52-11.726 0-.788-.085-1.39-.189-1.989H12.24z"/>
+                          </svg>
+                          Google
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-youtube btn-block">
+                          <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="icon" fill="currentColor">
+                            <path d="M23.495 6.205a3.007 3.007 0 0 0-2.088-2.088c-1.87-.501-9.396-.501-9.396-.501s-7.507-.01-9.396.501A3.007 3.007 0 0 0 .527 6.205a31.247 31.247 0 0 0-.522 5.805 31.247 31.247 0 0 0 .522 5.783 3.007 3.007 0 0 0 2.088 2.088c1.868.502 9.396.502 9.396.502s7.506 0 9.396-.502a3.007 3.007 0 0 0 2.088-2.088 31.247 31.247 0 0 0 .5-5.783 31.247 31.247 0 0 0-.5-5.805zM9.609 15.601V8.408l6.264 3.602z"/>
+                          </svg>
+                          Youtube
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-vimeo btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M23.977 6.416c-.105 2.338-1.739 5.543-4.894 9.609-3.268 4.247-6.026 6.37-8.29 6.37-1.409 0-2.578-1.294-3.553-3.881L5.322 11.4C4.603 8.816 3.834 7.522 3.01 7.522c-.179 0-.806.378-1.881 1.132L0 7.197a315.065 315.065 0 0 0 3.501-3.128C5.08 2.701 6.266 1.984 7.055 1.91c1.867-.18 3.016 1.1 3.447 3.838.465 2.953.789 4.789.971 5.507.539 2.45 1.131 3.674 1.776 3.674.502 0 1.256-.796 2.265-2.385 1.004-1.589 1.54-2.797 1.612-3.628.144-1.371-.395-2.061-1.614-2.061-.574 0-1.167.121-1.777.391 1.186-3.868 3.434-5.757 6.762-5.637 2.473.06 3.628 1.664 3.493 4.797l-.013.01z"/>
+                          </svg>
+                          Vimeo
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-dribbble btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M12 24C5.385 24 0 18.615 0 12S5.385 0 12 0s12 5.385 12 12-5.385 12-12 12zm10.12-10.358c-.35-.11-3.17-.953-6.384-.438 1.34 3.684 1.887 6.684 1.992 7.308a10.28 10.28 0 0 0 4.395-6.87zm-6.115 7.808c-.153-.9-.75-4.032-2.19-7.77l-.066.02c-5.79 2.015-7.86 6.025-8.04 6.4a10.161 10.161 0 0 0 6.29 2.166c1.42 0 2.77-.29 4-.814zm-11.62-2.58c.232-.4 3.045-5.055 8.332-6.765.135-.045.27-.084.405-.12-.26-.585-.54-1.167-.832-1.74C7.17 11.775 2.206 11.71 1.756 11.7l-.004.312c0 2.633.998 5.037 2.634 6.855zm-2.42-8.955c.46.008 4.683.026 9.477-1.248a65.473 65.473 0 0 0-3.8-5.928 10.275 10.275 0 0 0-5.676 7.17zM9.6 2.052c.282.38 2.145 2.914 3.822 6 3.645-1.365 5.19-3.44 5.373-3.702A10.19 10.19 0 0 0 12 1.764c-.825 0-1.63.1-2.4.285zm10.335 3.483c-.218.29-1.935 2.493-5.724 4.04.24.49.47.985.68 1.486.08.18.15.36.22.53 3.41-.43 6.8.26 7.14.33-.02-2.42-.88-4.64-2.31-6.38z"/>
+                          </svg>
+                          Dribbble
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-github btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
+                          </svg>
+                          Github
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-instagram btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913a5.885 5.885 0 0 0 1.384 2.126A5.868 5.868 0 0 0 4.14 23.37c.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558a5.898 5.898 0 0 0 2.126-1.384 5.86 5.86 0 0 0 1.384-2.126c.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913a5.89 5.89 0 0 0-1.384-2.126A5.847 5.847 0 0 0 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227a3.81 3.81 0 0 1-.899 1.382 3.744 3.744 0 0 1-1.38.896c-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421a3.716 3.716 0 0 1-1.379-.899 3.644 3.644 0 0 1-.9-1.38c-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 1 0 0-12.324zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405a1.441 1.441 0 0 1-2.88 0 1.44 1.44 0 0 1 2.88 0z"/>
+                          </svg>
+                          Instagram
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-pinterest btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/>
+                          </svg>
+                          Pinterest
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-vk btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M11.701 18.771h1.437s.433-.047.654-.284c.21-.221.21-.63.21-.63s-.031-1.927.869-2.21c.887-.281 2.012 1.86 3.211 2.683.916.629 1.605.494 1.605.494l3.211-.044s1.682-.105.887-1.426c-.061-.105-.451-.975-2.371-2.76-2.012-1.861-1.742-1.561.676-4.787 1.469-1.965 2.07-3.166 1.875-3.676-.166-.48-1.26-.361-1.26-.361l-3.602.031s-.27-.031-.465.09c-.195.119-.314.391-.314.391s-.572 1.529-1.336 2.82c-1.623 2.729-2.268 2.879-2.523 2.699-.604-.391-.449-1.58-.449-2.432 0-2.641.404-3.75-.781-4.035-.39-.091-.681-.15-1.685-.166-1.29-.014-2.378.01-2.995.311-.405.203-.72.652-.539.675.24.03.779.146 1.064.537.375.506.359 1.636.359 1.636s.211 3.116-.494 3.503c-.495.262-1.155-.28-2.595-2.756-.735-1.26-1.291-2.67-1.291-2.67s-.105-.256-.299-.406c-.227-.165-.557-.225-.557-.225l-3.435.03s-.51.016-.689.24c-.166.195-.016.615-.016.615s2.686 6.287 5.732 9.453c2.79 2.902 5.956 2.715 5.956 2.715l-.05-.055z"/>
+                          </svg>
+                          VK
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-rss btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415a3.3 3.3 0 0 1 3.293 3.295A3.303 3.303 0 0 1 3.283 24C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/>
+                          </svg>
+                          RSS
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-flickr btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M0 12a5.565 5.565 0 0 0 5.565 5.564c3.075 0 5.569-2.49 5.569-5.564S8.641 6.436 5.565 6.436A5.566 5.566 0 0 0 0 12zm12.866 0a5.565 5.565 0 0 0 5.567 5.564C21.496 17.564 24 15.074 24 12s-2.492-5.564-5.564-5.564A5.567 5.567 0 0 0 12.866 12z"/>
+                          </svg>
+                          Flickr
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-bitbucket btn-block">
+                          <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="icon" fill="currentColor">
+                            <path d="M.778 1.211a.768.768 0 0 0-.768.892l3.263 19.811c.084.499.515.867 1.022.872H19.95a.772.772 0 0 0 .77-.646l3.27-20.03a.768.768 0 0 0-.768-.891L.778 1.211zM14.52 15.528H9.522L8.17 8.464h7.561l-1.211 7.064z"/>
+                          </svg>
+                          Bitbucker
+                        </a>
+                      </div>
+                      <div class="col-6 col-sm-4 col-md-2 col-xl-auto mb-3">
+                        <a href="#" class="btn btn-tabler btn-block">
+                          <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="icon" fill="currentColor">
+                            <path d="M23.5 5.3C22.9 3 21 1.1 18.7.5 14.3-.2 9.8-.2 5.4.5 3 1.1 1.1 3 .5 5.3c-.7 4.4-.7 8.9 0 13.3.6 2.4 2.5 4.3 4.8 4.9 4.4.7 8.9.7 13.3 0 2.4-.6 4.2-2.4 4.8-4.8.8-4.5.8-8.9.1-13.4zm-11.8 7.6c-1 1.6-2.5 3.1-4.2 4.1-.6.3-1.2.3-1.8 0s-.9-.9-.9-1.5.3-1.2.9-1.5c.9-.5 1.6-1.2 2.3-2-.7-.8-1.4-1.4-2.3-2-.8-.5-1.1-1.6-.6-2.4S6.7 6.5 7.5 7c1.7 1 3.1 2.4 4.2 4.1.4.5.4 1.2 0 1.8zm6 3.6h-4.3c-.8 0-1.4-.4-1.4-1.1 0-.7.6-1.1 1.4-1.1h4.3c.8 0 1.4.4 1.4 1.1 0 .7-.6 1.1-1.4 1.1z"/>
+                          </svg>
+                          Tabler
+                        </a>
+                      </div>
                     </div>
                   </div>
                 </div>
               </div>
             </div>
-          </div>
-        </main>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

+ 404 - 253
demo/calendar.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,278 +25,429 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Calendar - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
+         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
                   </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
                   </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
-              </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
-         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
-              </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
          aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
-                </a>
-              </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item active">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <!-- Page title -->
-          <div class="page-title-box">
-            <div class="row align-items-center">
-              <div class="col-auto">
-                <h2 class="page-title">
-                  Calendar
-                </h2>
-              </div>
-              <!-- Page title actions -->
-              <div class="col-auto ml-auto">
-                <div class="d-flex">
-                  <a href="#" class="btn btn-primary">
-                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
-                    Add event
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
                   </a>
-                </div>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
+                        Calendar
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
+                        Carousel
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
+                        Charts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
+                        Flags
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
+                        Form elements
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
+                        Ribbons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
+                        Tabs
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
+                        Typography
+                      </span>
+                    </a>
+                  </div>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
+                  </div>
+                </form>
               </div>
             </div>
           </div>
-          <div class="card">
-            <div class="card-body">
-              <div id="calendar-main" class="card-calendar"></div>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <!-- Page title -->
+            <div class="page-title-box">
+              <div class="row align-items-center">
+                <div class="col-auto">
+                  <h2 class="page-title">
+                    Calendar
+                  </h2>
+                </div>
+                <!-- Page title actions -->
+                <div class="col-auto ml-auto d-print-none">
+                  <div class="d-flex">
+                    <a href="#" class="btn btn-primary">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
+                      Add event
+                    </a>
+                  </div>
+                </div>
+              </div>
             </div>
-          </div>
-        </main>
+            <div class="card">
+              <div class="card-body">
+                <div id="calendar-main" class="card-calendar"></div>
+              </div>
+            </div>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.addEventListener('DOMContentLoaded', function () {
             var calendarEl = document.getElementById('calendar-main'),

+ 737 - 585
demo/cards.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,673 +25,825 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Cards - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
+         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
                   </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
                   </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
-              </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
-         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
-              </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
          aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
-                </a>
-              </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <!-- Page title -->
-          <div class="page-title-box">
-            <div class="row align-items-center">
-              <div class="col-auto">
-                <h2 class="page-title">
-                  Cards
-                </h2>
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
+                        Calendar
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
+                        Carousel
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
+                        Charts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
+                        Flags
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
+                        Form elements
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
+                        Ribbons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
+                        Tabs
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
+                        Typography
+                      </span>
+                    </a>
+                  </div>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
+                  </div>
+                </form>
               </div>
             </div>
           </div>
-          <div class="row">
-            <div class="col-md-6 col-xl-4">
-              <div class="card">
-                <div class="card-body">
-                  <p>This is some text within a card body.</p>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <!-- Page title -->
+            <div class="page-title-box">
+              <div class="row align-items-center">
+                <div class="col-auto">
+                  <h2 class="page-title">
+                    Cards
+                  </h2>
                 </div>
               </div>
-              <div class="card">
-                <div class="card-body">
-                  <h3 class="card-title">Card with bottom image</h3>
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+            </div>
+            <div class="row">
+              <div class="col-md-6 col-xl-4">
+                <div class="card">
+                  <div class="card-body">
+                    <p>This is some text within a card body.</p>
+                  </div>
                 </div>
-                <img src="./img/photos/56614e12b2a7bd68.jpg" class="card-img-bottom"
+                <div class="card">
+                  <div class="card-body">
+                    <h3 class="card-title">Card with bottom image</h3>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                  </div>
+                  <img src="./img/photos/56614e12b2a7bd68.jpg" class="card-img-bottom"
            alt="Card bottom image">
-              </div>
-              <div class="card card-active">
-                <div class="card-body">
-                  <p>This is a card with active state.</p>
                 </div>
-              </div>
-              <div class="card card-inactive">
-                <div class="card-body">
-                  <p>This is some text inactive state.</p>
+                <div class="card card-active">
+                  <div class="card-body">
+                    <p>This is a card with active state.</p>
+                  </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-body">
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                <div class="card card-inactive">
+                  <div class="card-body">
+                    <p>This is some text inactive state.</p>
+                  </div>
                 </div>
-                <!-- Card footer -->
-                <div class="card-footer">
-                  <div class="row align-items-center">
-                    <div class="col-auto">
-                      <a href="#">More information</a>
-                    </div>
-                    <div class="col-auto ml-auto">
-                      <label class="form-check form-switch m-0">
-                        <input class="form-check-input position-static" type="checkbox" checked>
-                      </label>
+                <div class="card">
+                  <div class="card-body">
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                  </div>
+                  <!-- Card footer -->
+                  <div class="card-footer">
+                    <div class="row align-items-center">
+                      <div class="col-auto">
+                        <a href="#">More information</a>
+                      </div>
+                      <div class="col-auto ml-auto">
+                        <label class="form-check form-switch m-0">
+                          <input class="form-check-input position-static" type="checkbox" checked>
+                        </label>
+                      </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-body">
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
-                </div>
-                <!-- Card footer -->
-                <div class="card-footer">
-                  <div class="row align-items-center">
-                    <div class="col-auto ml-auto">
-                      <div class="avatar-list avatar-list-stacked">
-                        <span class="avatar avatar-sm" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                        <span class="avatar avatar-sm">JL</span>
-                        <span class="avatar avatar-sm" style="background-image: url(./img/avatars/002m.jpg)"></span>
-                        <span class="avatar avatar-sm" style="background-image: url(./img/avatars/003m.jpg)"></span>
-                        <span class="avatar avatar-sm" style="background-image: url(./img/avatars/000f.jpg)"></span>
-                        <span class="avatar avatar-sm">+3</span>
+                <div class="card">
+                  <div class="card-body">
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                  </div>
+                  <!-- Card footer -->
+                  <div class="card-footer">
+                    <div class="row align-items-center">
+                      <div class="col-auto ml-auto">
+                        <div class="avatar-list avatar-list-stacked">
+                          <span class="avatar avatar-sm" style="background-image: url(./img/avatars/000m.jpg)"></span>
+                          <span class="avatar avatar-sm">JL</span>
+                          <span class="avatar avatar-sm" style="background-image: url(./img/avatars/002m.jpg)"></span>
+                          <span class="avatar avatar-sm" style="background-image: url(./img/avatars/003m.jpg)"></span>
+                          <span class="avatar avatar-sm" style="background-image: url(./img/avatars/000f.jpg)"></span>
+                          <span class="avatar avatar-sm">+3</span>
+                        </div>
                       </div>
                     </div>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <ul class="nav nav-tabs card-header-tabs">
-                    <li class="nav-item">
-                      <a class="nav-link active" href="#">
-                        Active
-                      </a>
-                    </li>
-                    <li class="nav-item">
-                      <a class="nav-link" href="#">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon mr-1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
-                        Link
-                      </a>
-                    </li>
-                    <li class="nav-item">
-                      <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">
-                        Disabled
-                      </a>
-                    </li>
-                    <li class="nav-item ml-auto">
-                      <a class="nav-link" href="#">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                      </a>
-                    </li>
-                  </ul>
-                </div>
-                <div class="card-body">
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
-                </div>
-              </div>
-              <div class="card">
-                <div class="card-header">
-                  <ul class="nav nav-pills card-header-pills">
-                    <li class="nav-item">
-                      <a class="nav-link active" href="#">
-                        Active
-                      </a>
-                    </li>
-                    <li class="nav-item">
-                      <a class="nav-link" href="#">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon mr-1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
-                        Link
-                      </a>
-                    </li>
-                    <li class="nav-item">
-                      <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">
-                        Disabled
-                      </a>
-                    </li>
-                    <li class="nav-item ml-auto">
-                      <a class="nav-link" href="#">
-                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                      </a>
-                    </li>
-                  </ul>
-                </div>
-                <div class="card-body">
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
-                </div>
-              </div>
-              <div class="card">
-                <div class="card-body">
-                  <h3 class="card-title">Card with progress bar</h3>
-                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                    neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
-                </div>
-                <div class="progress progress-sm card-progress">
-                  <div class="progress-bar" style="width: 38%" role="progressbar" aria-valuenow="38" aria-valuemin="0" aria-valuemax="100">
-                    <span class="sr-only">38% Complete</span>
+                <div class="card">
+                  <div class="card-header">
+                    <ul class="nav nav-tabs card-header-tabs">
+                      <li class="nav-item">
+                        <a class="nav-link active" href="#">
+                          Active
+                        </a>
+                      </li>
+                      <li class="nav-item">
+                        <a class="nav-link" href="#">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon mr-1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                          Link
+                        </a>
+                      </li>
+                      <li class="nav-item">
+                        <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">
+                          Disabled
+                        </a>
+                      </li>
+                      <li class="nav-item ml-auto">
+                        <a class="nav-link" href="#">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                        </a>
+                      </li>
+                    </ul>
+                  </div>
+                  <div class="card-body">
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
                   </div>
                 </div>
-              </div>
-              <div class="card">
-                <div class="empty">
-                  <div class="empty-icon">
-                    <img src="./img/illustrations/undraw_quitting_time_dm8t.svg" class="h-8 mb-4" alt="">
+                <div class="card">
+                  <div class="card-header">
+                    <ul class="nav nav-pills card-header-pills">
+                      <li class="nav-item">
+                        <a class="nav-link active" href="#">
+                          Active
+                        </a>
+                      </li>
+                      <li class="nav-item">
+                        <a class="nav-link" href="#">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon mr-1"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                          Link
+                        </a>
+                      </li>
+                      <li class="nav-item">
+                        <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">
+                          Disabled
+                        </a>
+                      </li>
+                      <li class="nav-item ml-auto">
+                        <a class="nav-link" href="#">
+                          <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                        </a>
+                      </li>
+                    </ul>
                   </div>
-                  <p class="empty-title h3">No results found</p>
-                  <p class="empty-subtitle text-muted">
-                    Try adjusting your search or filter to find what you're looking for.
-                  </p>
-                  <div class="empty-action">
-                    <a href="#" class="btn btn-primary">
-                      Search again
-                    </a>
+                  <div class="card-body">
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
                   </div>
                 </div>
-              </div>
-              <!-- Cards with tabs component -->
-              <div class="card-tabs">
-                <!-- Cards navigation -->
-                <ul class="nav nav-tabs">
-                  <li class="nav-item"><a href="#tab-top-1" class="nav-link active" data-toggle="tab">Tab 1</a></li>
-                  <li class="nav-item"><a href="#tab-top-2" class="nav-link" data-toggle="tab">Tab 2</a></li>
-                  <li class="nav-item"><a href="#tab-top-3" class="nav-link" data-toggle="tab">Tab 3</a></li>
-                  <li class="nav-item"><a href="#tab-top-4" class="nav-link" data-toggle="tab">Tab 4</a></li>
-                </ul>
-                <div class="tab-content">
-                  <!-- Content of card #1 -->
-                  <div id="tab-top-1" class="card tab-pane active show">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #1</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
-                    </div>
+                <div class="card">
+                  <div class="card-body">
+                    <h3 class="card-title">Card with progress bar</h3>
+                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                      neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
                   </div>
-                  <!-- Content of card #2 -->
-                  <div id="tab-top-2" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #2</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                  <div class="progress progress-sm card-progress">
+                    <div class="progress-bar" style="width: 38%" role="progressbar" aria-valuenow="38" aria-valuemin="0" aria-valuemax="100">
+                      <span class="sr-only">38% Complete</span>
                     </div>
                   </div>
-                  <!-- Content of card #3 -->
-                  <div id="tab-top-3" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #3</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                </div>
+                <div class="card">
+                  <div class="empty">
+                    <div class="empty-icon">
+                      <img src="./img/illustrations/undraw_quitting_time_dm8t.svg" class="h-8 mb-4" alt="">
                     </div>
-                  </div>
-                  <!-- Content of card #4 -->
-                  <div id="tab-top-4" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #4</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                    <p class="empty-title h3">No results found</p>
+                    <p class="empty-subtitle text-muted">
+                      Try adjusting your search or filter to find what you're looking for.
+                    </p>
+                    <div class="empty-action">
+                      <a href="../index.html" class="btn btn-primary">
+                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                        Search again
+                      </a>
                     </div>
                   </div>
                 </div>
-              </div>
-              <!-- Cards with tabs component -->
-              <div class="card-tabs">
-                <div class="tab-content">
-                  <!-- Content of card #1 -->
-                  <div id="tab-bottom-1" class="card tab-pane active show">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #1</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                <!-- Cards with tabs component -->
+                <div class="card-tabs">
+                  <!-- Cards navigation -->
+                  <ul class="nav nav-tabs">
+                    <li class="nav-item"><a href="#tab-top-1" class="nav-link active" data-toggle="tab">Tab 1</a></li>
+                    <li class="nav-item"><a href="#tab-top-2" class="nav-link" data-toggle="tab">Tab 2</a></li>
+                    <li class="nav-item"><a href="#tab-top-3" class="nav-link" data-toggle="tab">Tab 3</a></li>
+                    <li class="nav-item"><a href="#tab-top-4" class="nav-link" data-toggle="tab">Tab 4</a></li>
+                  </ul>
+                  <div class="tab-content">
+                    <!-- Content of card #1 -->
+                    <div id="tab-top-1" class="card tab-pane active show">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #1</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
-                  </div>
-                  <!-- Content of card #2 -->
-                  <div id="tab-bottom-2" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #2</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                    <!-- Content of card #2 -->
+                    <div id="tab-top-2" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #2</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
-                  </div>
-                  <!-- Content of card #3 -->
-                  <div id="tab-bottom-3" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #3</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                    <!-- Content of card #3 -->
+                    <div id="tab-top-3" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #3</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
-                  </div>
-                  <!-- Content of card #4 -->
-                  <div id="tab-bottom-4" class="card tab-pane">
-                    <div class="card-body">
-                      <div class="card-title">Content of tab #4</div>
-                      <p>
-                        Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
-                      </p>
+                    <!-- Content of card #4 -->
+                    <div id="tab-top-4" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #4</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
                   </div>
                 </div>
-                <!-- Cards navigation -->
-                <ul class="nav nav-tabs nav-tabs-bottom">
-                  <li class="nav-item"><a href="#tab-bottom-1" class="nav-link active" data-toggle="tab">Tab 1</a></li>
-                  <li class="nav-item"><a href="#tab-bottom-2" class="nav-link" data-toggle="tab">Tab 2</a></li>
-                  <li class="nav-item"><a href="#tab-bottom-3" class="nav-link" data-toggle="tab">Tab 3</a></li>
-                  <li class="nav-item"><a href="#tab-bottom-4" class="nav-link" data-toggle="tab">Tab 4</a></li>
-                </ul>
-              </div>
-            </div>
-            <div class="col-md-6 col-xl-8">
-              <div class="card">
-                <div class="row row-0">
-                  <div class="col-md-3">
-                    <img src="./img/photos/2854fd67ddbd6217.jpg" class="w-100 h-100 object-cover" alt="Card side image">
-                  </div>
-                  <div class="col">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with left side image</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                <!-- Cards with tabs component -->
+                <div class="card-tabs">
+                  <div class="tab-content">
+                    <!-- Content of card #1 -->
+                    <div id="tab-bottom-1" class="card tab-pane active show">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #1</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
-                  </div>
-                </div>
-              </div>
-              <div class="card">
-                <div class="row row-0">
-                  <div class="col-md-3 order-md-last">
-                    <img src="./img/photos/de6d0fd1feebb6a2.jpg" class="w-100 h-100 object-cover" alt="Card side image">
-                  </div>
-                  <div class="col">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with right side image</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                    <!-- Content of card #2 -->
+                    <div id="tab-bottom-2" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #2</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
+                    </div>
+                    <!-- Content of card #3 -->
+                    <div id="tab-bottom-3" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #3</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
+                    </div>
+                    <!-- Content of card #4 -->
+                    <div id="tab-bottom-4" class="card tab-pane">
+                      <div class="card-body">
+                        <div class="card-title">Content of tab #4</div>
+                        <p>
+                          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci, alias aliquid distinctio dolorem expedita, fugiat hic magni molestiae molestias odit.
+                        </p>
+                      </div>
                     </div>
                   </div>
+                  <!-- Cards navigation -->
+                  <ul class="nav nav-tabs nav-tabs-bottom">
+                    <li class="nav-item"><a href="#tab-bottom-1" class="nav-link active" data-toggle="tab">Tab 1</a></li>
+                    <li class="nav-item"><a href="#tab-bottom-2" class="nav-link" data-toggle="tab">Tab 2</a></li>
+                    <li class="nav-item"><a href="#tab-bottom-3" class="nav-link" data-toggle="tab">Tab 3</a></li>
+                    <li class="nav-item"><a href="#tab-bottom-4" class="nav-link" data-toggle="tab">Tab 4</a></li>
+                  </ul>
                 </div>
               </div>
-              <div class="card-group">
-                <a href="#" class="card card-inactive text-center">
-                  <div class="card-body">
-                    <p>This is first card</p>
-                  </div>
-                </a>
-                <a href="#" class="card card-active text-center">
-                  <div class="card-body">
-                    <p>This is second card</p>
-                  </div>
-                </a>
-                <a href="#" class="card text-center">
-                  <div class="card-body">
-                    <p>This is third card</p>
-                  </div>
-                </a>
-              </div>
-              <div class="row">
-                <div class="col-xl-6">
-                  <div class="card">
-                    <img src="./img/photos/9f36332564ca271d.jpg" class="card-img-top" alt="Card top image">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with top image</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+              <div class="col-md-6 col-xl-8">
+                <div class="card">
+                  <div class="row row-0">
+                    <div class="col-md-3">
+                      <img src="./img/photos/2854fd67ddbd6217.jpg" class="w-100 h-100 object-cover" alt="Card side image">
                     </div>
-                  </div>
-                  <div class="card">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with button link</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
-                      <div class="card-text">
-                        <a href="#" class="btn btn-primary">Go somewhere</a>
+                    <div class="col">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with left side image</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
                       </div>
                     </div>
                   </div>
-                  <div class="card">
-                    <div class="card-status-top bg-danger"></div>
-                    <div class="card-body">
-                      <h3 class="card-title">Card with top status</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                </div>
+                <div class="card">
+                  <div class="row row-0">
+                    <div class="col-md-3 order-md-last">
+                      <img src="./img/photos/de6d0fd1feebb6a2.jpg" class="w-100 h-100 object-cover" alt="Card side image">
+                    </div>
+                    <div class="col">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with right side image</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
                   </div>
-                  <div class="card">
-                    <div class="card-status-bottom bg-success"></div>
+                </div>
+                <div class="card-group">
+                  <a href="#" class="card card-inactive text-center">
                     <div class="card-body">
-                      <h3 class="card-title">Card with bottom status</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      <p>This is first card</p>
                     </div>
-                  </div>
-                  <div class="card">
-                    <div class="card-status-left bg-primary"></div>
+                  </a>
+                  <a href="#" class="card card-active text-center">
                     <div class="card-body">
-                      <h3 class="card-title">Card with side status</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      <p>This is second card</p>
                     </div>
-                  </div>
-                  <div class="card card-stacked">
+                  </a>
+                  <a href="#" class="card text-center">
                     <div class="card-body">
-                      <h3 class="card-title">Stacked card</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      <p>This is third card</p>
                     </div>
-                  </div>
+                  </a>
                 </div>
-                <div class="col-xl-6">
-                  <div class="card">
-                    <div class="card-body">
-                      <h3 class="card-title">Card title</h3>
-                      <div class="card-subtitle">Card subtitle</div>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                <div class="row">
+                  <div class="col-xl-6">
+                    <div class="card">
+                      <img src="./img/photos/9f36332564ca271d.jpg" class="card-img-top" alt="Card top image">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with top image</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
-                  </div>
-                  <div class="card">
-                    <div class="card-header">
-                      <h3 class="card-title">Header title</h3>
+                    <div class="card">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with button link</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                        <div class="card-text">
+                          <a href="#" class="btn btn-primary">Go somewhere</a>
+                        </div>
+                      </div>
                     </div>
-                    <div class="card-body">
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                    <div class="card">
+                      <div class="card-status-top bg-danger"></div>
+                      <div class="card-body">
+                        <h3 class="card-title">Card with top status</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
-                  </div>
-                  <div class="card">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with footer</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                    <div class="card">
+                      <div class="card-status-bottom bg-success"></div>
+                      <div class="card-body">
+                        <h3 class="card-title">Card with bottom status</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
-                    <!-- Card footer -->
-                    <div class="card-footer">
-                      This is standard card footer
+                    <div class="card">
+                      <div class="card-status-left bg-primary"></div>
+                      <div class="card-body">
+                        <h3 class="card-title">Card with side status</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
+                    </div>
+                    <div class="card card-stacked">
+                      <div class="card-body">
+                        <h3 class="card-title">Stacked card</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
                   </div>
-                  <div class="card">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with footer button</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                  <div class="col-xl-6">
+                    <div class="card">
+                      <div class="card-body">
+                        <h3 class="card-title">Card title</h3>
+                        <div class="card-subtitle">Card subtitle</div>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
-                    <!-- Card footer -->
-                    <div class="card-footer">
-                      <a href="#" class="btn btn-primary">Go somewhere</a>
+                    <div class="card">
+                      <div class="card-header">
+                        <h3 class="card-title">Header title</h3>
+                      </div>
+                      <div class="card-body">
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
                     </div>
-                  </div>
-                  <div class="card">
-                    <div class="card-body">
-                      <h3 class="card-title">Card with footer buttons</h3>
-                      <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
-                        neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                    <div class="card">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with footer</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
+                      <!-- Card footer -->
+                      <div class="card-footer">
+                        This is standard card footer
+                      </div>
+                    </div>
+                    <div class="card">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with footer button</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
+                      <!-- Card footer -->
+                      <div class="card-footer">
+                        <a href="#" class="btn btn-primary">Go somewhere</a>
+                      </div>
                     </div>
-                    <!-- Card footer -->
-                    <div class="card-footer">
-                      <div class="d-flex">
-                        <a href="#" class="btn btn-link">Cancel</a>
-                        <a href="#" class="btn btn-primary ml-auto">Go somewhere</a>
+                    <div class="card">
+                      <div class="card-body">
+                        <h3 class="card-title">Card with footer buttons</h3>
+                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam deleniti fugit incidunt, iste, itaque minima
+                          neque pariatur perferendis sed suscipit velit vitae voluptatem.</p>
+                      </div>
+                      <!-- Card footer -->
+                      <div class="card-footer">
+                        <div class="d-flex">
+                          <a href="#" class="btn btn-link">Cancel</a>
+                          <a href="#" class="btn btn-primary ml-auto">Go somewhere</a>
+                        </div>
                       </div>
                     </div>
                   </div>
                 </div>
               </div>
             </div>
-          </div>
-        </main>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

+ 527 - 376
demo/carousel.html

@@ -1,7 +1,7 @@
 <!doctype html>
 <!--
 * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
-* @version 1.0-alpha
+* @version v1.0.0-alpha
 * @link https://github.com/tabler/tabler
 * Copyright 2018-2019 The Tabler Authors
 * Copyright 2018-2019 codecalm.net Paweł Kuna
@@ -25,426 +25,577 @@
     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
     <title>Carousel - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
     <!-- Libs CSS -->
-    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/selectize/dist/css/selectize.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/core/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/libs/fullcalendar/list/main.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/libs/jqvmap/dist/jqvmap.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/selectize/dist/css/selectize.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/core/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/daygrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/timegrid/main.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/libs/fullcalendar/list/main.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Core -->
-    <link href="../dist/css/tabler.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler.min.css?1576701882" rel="stylesheet"/>
     <!-- Tabler Plugins -->
-    <link href="../dist/css/tabler-flags.min.css?1576401968" rel="stylesheet"/>
-    <link href="../dist/css/tabler-charts.min.css?1576401968" rel="stylesheet"/>
+    <link href="../dist/css/tabler-flags.min.css?1576701882" rel="stylesheet"/>
+    <link href="../dist/css/tabler-charts.min.css?1576701882" rel="stylesheet"/>
     <style>
       body { display: none; }
     </style>
   </head>
-  <body class="antialiased ">
-    <div class="layout">
-      <header class="layout-area-topnav navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <a class="layout-toggler" data-toggle="menubar">
-            <span class="layout-toggler-icon"></span>
-          </a>
-          <a href="." class="navbar-brand text-reset mr-md-3">
-            <img src="./img/logo.svg" alt="Tabler" class="d-none d-md-block navbar-brand-logo">
-            <img src="./img/logo-small.svg" alt="Tabler" class="d-md-none navbar-brand-logo">
-          </a>
-          <ul class="nav navbar-menu align-items-center order-1 order-lg-2">
-            <li class="nav-item dropdown mr-3">
-              <a class="nav-link text-reset px-2" data-toggle="dropdown">
-                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path></svg>
-                <span class="badge badge-pill badge-up bg-primary">4</span>
+  <body class="antialiased">
+    <div class="wrapper">
+      <div class="content">
+        <header class="topnav topbar">
+          <div class="container">
+            <div class="navbar navbar-expand-lg navbar-light">
+              <a href=".." class="navbar-brand mr-4">
+                <img src="../img/logo.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-lg">
+                <img src="../img/logo-small.svg" alt="Tabler" class="navbar-brand-logo navbar-brand-logo-sm">
               </a>
-              <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-right mt-3 p-0">
-                <div class="scrollable">
-                  <div class="list list-row">
+              <ul class="nav navbar-menu align-items-center ml-auto">
+                <li class="nav-item d-none d-lg-flex mr-3">
+                  <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a href="#" data-toggle="dropdown"
+         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
+                    <span class="avatar" style="background-image: url(../img/avatars/004f.jpg)"></span>
+                    <span class="ml-2 d-none d-lg-block leading-none">
+                      Leesa Beaty
+                      <span class="text-muted d-block mt-1 text-h6">Administrator</span>
+                    </span>
+                  </a>
+                  <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
+                      Profile
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
+                      Settings
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
+                      Inbox
+                      <span class="badge bg-primary ml-auto">6</span>
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
+                      Message
+                    </a>
+                    <div class="dropdown-divider"></div>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
+                      Need help?
+                    </a>
+                    <a class="dropdown-item" href="#">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
+                      Sign out
+                    </a>
                   </div>
-                </div>
-                <div class="d-flex px-3 py-2 b-t">
-                  <div class="flex">
-                    <span>6 Notifications</span>
+                </li>
+              </ul>
+            </div>
+          </div>
+        </header>
+        <header class="topnav topbar">
+          <div class="navbar navbar-expand-lg navbar-light">
+            <div class="container">
+              <ul class="navbar-nav flex-wrap">
+                <li class="nav-item">
+                  <a class="nav-link" href="./index.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Dashboard
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./form-elements.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Form elements
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-error" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Error pages
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./400.html" >
+                      <span class="nav-text">
+                        400 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./401.html" >
+                      <span class="nav-text">
+                        401 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./403.html" >
+                      <span class="nav-text">
+                        403 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./404.html" >
+                      <span class="nav-text">
+                        404 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./500.html" >
+                      <span class="nav-text">
+                        500 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./503.html" >
+                      <span class="nav-text">
+                        503 page
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./maintenance.html" >
+                      <span class="nav-text">
+                        Maintenance page
+                      </span>
+                    </a>
                   </div>
-                  <a href="#">See all <i class="fa fa-angle-right text-muted"></i></a>
-                </div>
-              </div>
-            </li>
-            <li class="nav-item d-none d-lg-flex mr-3">
-              <a href="https://github.com/tabler/tabler" class="btn btn-sm btn-success" target="_blank">Source code</a>
-            </li>
-            <li class="nav-item dropdown">
-              <a href="#" data-toggle="dropdown"
-         class="nav-link d-flex align-items-center py-0 px-lg-0 px-2 text-reset ml-2">
-                <span class="avatar" style="background-image: url(./img/avatars/000m.jpg)"></span>
-                <span class="ml-2 d-none d-lg-block leading-none">
-                  Paweł Kuna
-                  <span class="text-muted d-block mt-1 text-h6">Administrator</span>
-                </span>
-              </a>
-              <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
-                  Profile
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
-                  Settings
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>
-                  Inbox
-                  <span class="badge bg-primary ml-auto">6</span>
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
-                  Message
-                </a>
-                <div class="dropdown-divider"></div>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12" y2="17"></line></svg>
-                  Need help?
-                </a>
-                <a class="dropdown-item" href="#">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon dropdown-icon"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>
-                  Sign out
-                </a>
-              </div>
-            </li>
-          </ul>
-        </div>
-      </header>
-      <div class="layout-area-menu navbar navbar-expand-lg navbar-light">
-        <div class="container">
-          <ul class="navbar-nav flex-wrap">
-            <li class="nav-item">
-              <a class="nav-link" href="./index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Dashboard
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./form-elements.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Form elements
-                </span>
-              </a>
-            </li>
-            <li class="nav-item dropdown">
-              <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-base" data-toggle="dropdown" role="button"
          aria-expanded="false" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Base
-                </span>
-              </a>
-              <div class="dropdown-menu">
-                <a class="dropdown-item" href="./buttons.html" >
-                  <span class="nav-text">
-                    Buttons
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./cards.html" >
-                  <span class="nav-text">
-                    Cards
-                  </span>
-                </a>
-                <a class="dropdown-item" href="./c.html" >
-                  <span class="nav-text">
-                    C
-                  </span>
-                </a>
-              </div>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./charts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Charts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./calendar.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Calendar
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./users.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
-                </span>
-                <span class="nav-text">
-                  Users
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./gallery.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Gallery
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./layouts.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
-                </span>
-                <span class="nav-text">
-                  Layouts
-                </span>
-              </a>
-            </li>
-            <li class="nav-item">
-              <a class="nav-link" href="./docs/index.html" >
-                <span class="nav-icon">
-                  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
-                </span>
-                <span class="nav-text">
-                  Documentation
-                </span>
-              </a>
-            </li>
-          </ul>
-        </div>
-      </div>
-      <div class="layout-area-menu-backdrop" data-toggle="menubar"></div>
-      <div class="layout-area-main">
-        <main class="container my-4 flex-fill">
-          <!-- Page title -->
-          <div class="page-title-box">
-            <div class="row align-items-center">
-              <div class="col-auto">
-                <h2 class="page-title">
-                  Carousel
-                </h2>
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Base
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./calendar.html" >
+                      <span class="nav-text">
+                        Calendar
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./users.html" >
+                      <span class="nav-text">
+                        Users
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./gallery.html" >
+                      <span class="nav-text">
+                        Gallery
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./charts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path></svg>
+                    </span>
+                    <span class="nav-text">
+                      Charts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item">
+                  <a class="nav-link" href="./layouts.html" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line></svg>
+                    </span>
+                    <span class="nav-text">
+                      Layouts
+                    </span>
+                  </a>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-extra" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
+                    </span>
+                    <span class="nav-text">
+                      Extra
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./invoice.html" >
+                      <span class="nav-text">
+                        Invoice
+                      </span>
+                    </a>
+                  </div>
+                </li>
+                <li class="nav-item dropdown">
+                  <a class="nav-link dropdown-toggle" href="#navbar-docs" data-toggle="dropdown" role="button"
+         aria-expanded="false" >
+                    <span class="nav-icon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
+                    </span>
+                    <span class="nav-text">
+                      Documentation
+                    </span>
+                  </a>
+                  <div class="dropdown-menu">
+                    <a class="dropdown-item" href="./docs/index.html" >
+                      <span class="nav-text">
+                        index
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/alerts.html" >
+                      <span class="nav-text">
+                        Alerts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/autosize.html" >
+                      <span class="nav-text">
+                        Autosize
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/avatars.html" >
+                      <span class="nav-text">
+                        Avatars
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/badges.html" >
+                      <span class="nav-text">
+                        Badges
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/breadcrumb.html" >
+                      <span class="nav-text">
+                        Breadcrumb
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/buttons.html" >
+                      <span class="nav-text">
+                        Buttons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cards.html" >
+                      <span class="nav-text">
+                        Cards
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/carousel.html" >
+                      <span class="nav-text">
+                        Carousel
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/colors.html" >
+                      <span class="nav-text">
+                        Colors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/cursors.html" >
+                      <span class="nav-text">
+                        Cursors
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/charts.html" >
+                      <span class="nav-text">
+                        Charts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/divider.html" >
+                      <span class="nav-text">
+                        Divider
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/empty.html" >
+                      <span class="nav-text">
+                        Empty states
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/flags.html" >
+                      <span class="nav-text">
+                        Flags
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-elements.html" >
+                      <span class="nav-text">
+                        Form elements
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/form-helpers.html" >
+                      <span class="nav-text">
+                        Form helpers
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/input-mask.html" >
+                      <span class="nav-text">
+                        Form input mask
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/progress.html" >
+                      <span class="nav-text">
+                        Progress
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/ribbons.html" >
+                      <span class="nav-text">
+                        Ribbons
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/spinners.html" >
+                      <span class="nav-text">
+                        Spinners
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/steps.html" >
+                      <span class="nav-text">
+                        Steps
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tables.html" >
+                      <span class="nav-text">
+                        Tables
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tabs.html" >
+                      <span class="nav-text">
+                        Tabs
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/timelines.html" >
+                      <span class="nav-text">
+                        Timelines
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/toasts.html" >
+                      <span class="nav-text">
+                        Toasts
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/tooltips.html" >
+                      <span class="nav-text">
+                        Tooltips
+                      </span>
+                    </a>
+                    <a class="dropdown-item" href="./docs/typography.html" >
+                      <span class="nav-text">
+                        Typography
+                      </span>
+                    </a>
+                  </div>
+                </li>
+              </ul>
+              <div class="navbar-search d-none d-lg-block">
+                <form action="." method="get">
+                  <div class="input-icon">
+                    <span class="input-icon-addon">
+                      <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
+                    </span>
+                    <input type="text" class="form-control form-control-light" placeholder="Search for&hellip;">
+                  </div>
+                </form>
               </div>
             </div>
           </div>
-          <div class="row">
-            <div class="col-md-6">
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Carousel</h3>
+        </header>
+        <div class="content-page">
+          <main class="container my-4 flex-fill">
+            <!-- Page title -->
+            <div class="page-title-box">
+              <div class="row align-items-center">
+                <div class="col-auto">
+                  <h2 class="page-title">
+                    Carousel
+                  </h2>
                 </div>
-                <div class="card-body">
-                  <div id="carousel-default" class="carousel slide" data-ride="carousel">
-                    <div class="carousel-inner">
-                      <div class="carousel-item active">
-                        <img class="d-block w-100" alt="" src="./img/photos/1b73704b282a8ec6.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/3d2998219313cd37.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/6ab3200b14549f8a.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/6d35d9a2bd6c63c2.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/8a26974ee6444acd.jpg" data-holder-rendered="true">
+              </div>
+            </div>
+            <div class="row">
+              <div class="col-md-6">
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Carousel</h3>
+                  </div>
+                  <div class="card-body">
+                    <div id="carousel-default" class="carousel slide" data-ride="carousel">
+                      <div class="carousel-inner">
+                        <div class="carousel-item active">
+                          <img class="d-block w-100" alt="" src="./img/photos/1b73704b282a8ec6.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/3d2998219313cd37.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/6ab3200b14549f8a.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/6d35d9a2bd6c63c2.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/8a26974ee6444acd.jpg" data-holder-rendered="true">
+                        </div>
                       </div>
                     </div>
                   </div>
                 </div>
               </div>
-            </div>
-            <div class="col-md-6">
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Carousel with indicators</h3>
-                </div>
-                <div class="card-body">
-                  <div id="carousel-indicators" class="carousel slide" data-ride="carousel">
-                    <ol class="carousel-indicators">
-                      <li data-target="#carousel-indicators" data-slide-to="0" class="active"></li>
-                      <li data-target="#carousel-indicators" data-slide-to="1" class=""></li>
-                      <li data-target="#carousel-indicators" data-slide-to="2" class=""></li>
-                      <li data-target="#carousel-indicators" data-slide-to="3" class=""></li>
-                      <li data-target="#carousel-indicators" data-slide-to="4" class=""></li>
-                    </ol>
-                    <div class="carousel-inner">
-                      <div class="carousel-item active">
-                        <img class="d-block w-100" alt="" src="./img/photos/8c13ad59f739558c.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/8fdeb4785d2b82ef.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/9f36332564ca271d.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/35b88fc04a518c1b.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/36e273986ed577b8.jpg" data-holder-rendered="true">
+              <div class="col-md-6">
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Carousel with indicators</h3>
+                  </div>
+                  <div class="card-body">
+                    <div id="carousel-indicators" class="carousel slide" data-ride="carousel">
+                      <ol class="carousel-indicators">
+                        <li data-target="#carousel-indicators" data-slide-to="0" class="active"></li>
+                        <li data-target="#carousel-indicators" data-slide-to="1" class=""></li>
+                        <li data-target="#carousel-indicators" data-slide-to="2" class=""></li>
+                        <li data-target="#carousel-indicators" data-slide-to="3" class=""></li>
+                        <li data-target="#carousel-indicators" data-slide-to="4" class=""></li>
+                      </ol>
+                      <div class="carousel-inner">
+                        <div class="carousel-item active">
+                          <img class="d-block w-100" alt="" src="./img/photos/8c13ad59f739558c.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/8fdeb4785d2b82ef.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/9f36332564ca271d.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/35b88fc04a518c1b.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/36e273986ed577b8.jpg" data-holder-rendered="true">
+                        </div>
                       </div>
                     </div>
                   </div>
                 </div>
               </div>
-            </div>
-            <div class="col-md-6">
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Carousel with controls</h3>
-                </div>
-                <div class="card-body">
-                  <div id="carousel-controls" class="carousel slide" data-ride="carousel">
-                    <div class="carousel-inner">
-                      <div class="carousel-item active">
-                        <img class="d-block w-100" alt="" src="./img/photos/75b555b99d5b38c4.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/546fd146c83f428c.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/802a16cdf5ce3551.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/0986f97be719fb9a.jpg" data-holder-rendered="true">
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/1194d63fe36a8670.jpg" data-holder-rendered="true">
+              <div class="col-md-6">
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Carousel with controls</h3>
+                  </div>
+                  <div class="card-body">
+                    <div id="carousel-controls" class="carousel slide" data-ride="carousel">
+                      <div class="carousel-inner">
+                        <div class="carousel-item active">
+                          <img class="d-block w-100" alt="" src="./img/photos/75b555b99d5b38c4.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/546fd146c83f428c.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/802a16cdf5ce3551.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/0986f97be719fb9a.jpg" data-holder-rendered="true">
+                        </div>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/1194d63fe36a8670.jpg" data-holder-rendered="true">
+                        </div>
                       </div>
+                      <a class="carousel-control-prev" href="#carousel-controls" role="button" data-slide="prev">
+                        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
+                        <span class="sr-only">Previous</span>
+                      </a>
+                      <a class="carousel-control-next" href="#carousel-controls" role="button" data-slide="next">
+                        <span class="carousel-control-next-icon" aria-hidden="true"></span>
+                        <span class="sr-only">Next</span>
+                      </a>
                     </div>
-                    <a class="carousel-control-prev" href="#carousel-controls" role="button" data-slide="prev">
-                      <span class="carousel-control-prev-icon" aria-hidden="true"></span>
-                      <span class="sr-only">Previous</span>
-                    </a>
-                    <a class="carousel-control-next" href="#carousel-controls" role="button" data-slide="next">
-                      <span class="carousel-control-next-icon" aria-hidden="true"></span>
-                      <span class="sr-only">Next</span>
-                    </a>
                   </div>
                 </div>
               </div>
-            </div>
-            <div class="col-md-6">
-              <div class="card">
-                <div class="card-header">
-                  <h3 class="card-title">Carousel with captions</h3>
-                </div>
-                <div class="card-body">
-                  <div id="carousel-captions" class="carousel slide" data-ride="carousel">
-                    <div class="carousel-inner">
-                      <div class="carousel-item active">
-                        <img class="d-block w-100" alt="" src="./img/photos/1366fdc9b9b277e4.jpg" data-holder-rendered="true">
-                        <div class="carousel-item-background d-none d-md-block"></div>
-                        <div class="carousel-caption d-none d-md-block">
-                          <h3>Slide label</h3>
-                          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+              <div class="col-md-6">
+                <div class="card">
+                  <div class="card-header">
+                    <h3 class="card-title">Carousel with captions</h3>
+                  </div>
+                  <div class="card-body">
+                    <div id="carousel-captions" class="carousel slide" data-ride="carousel">
+                      <div class="carousel-inner">
+                        <div class="carousel-item active">
+                          <img class="d-block w-100" alt="" src="./img/photos/1366fdc9b9b277e4.jpg" data-holder-rendered="true">
+                          <div class="carousel-item-background d-none d-md-block"></div>
+                          <div class="carousel-caption d-none d-md-block">
+                            <h3>Slide label</h3>
+                            <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                          </div>
                         </div>
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/5358d787242861c4.jpg" data-holder-rendered="true">
-                        <div class="carousel-item-background d-none d-md-block"></div>
-                        <div class="carousel-caption d-none d-md-block">
-                          <h3>Slide label</h3>
-                          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/5358d787242861c4.jpg" data-holder-rendered="true">
+                          <div class="carousel-item-background d-none d-md-block"></div>
+                          <div class="carousel-caption d-none d-md-block">
+                            <h3>Slide label</h3>
+                            <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                          </div>
                         </div>
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/5614ec7eb9034d04.jpg" data-holder-rendered="true">
-                        <div class="carousel-item-background d-none d-md-block"></div>
-                        <div class="carousel-caption d-none d-md-block">
-                          <h3>Slide label</h3>
-                          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/5614ec7eb9034d04.jpg" data-holder-rendered="true">
+                          <div class="carousel-item-background d-none d-md-block"></div>
+                          <div class="carousel-caption d-none d-md-block">
+                            <h3>Slide label</h3>
+                            <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                          </div>
                         </div>
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/56614e12b2a7bd68.jpg" data-holder-rendered="true">
-                        <div class="carousel-item-background d-none d-md-block"></div>
-                        <div class="carousel-caption d-none d-md-block">
-                          <h3>Slide label</h3>
-                          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/56614e12b2a7bd68.jpg" data-holder-rendered="true">
+                          <div class="carousel-item-background d-none d-md-block"></div>
+                          <div class="carousel-caption d-none d-md-block">
+                            <h3>Slide label</h3>
+                            <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                          </div>
                         </div>
-                      </div>
-                      <div class="carousel-item">
-                        <img class="d-block w-100" alt="" src="./img/photos/77586f6ffa9fbc5e.jpg" data-holder-rendered="true">
-                        <div class="carousel-item-background d-none d-md-block"></div>
-                        <div class="carousel-caption d-none d-md-block">
-                          <h3>Slide label</h3>
-                          <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                        <div class="carousel-item">
+                          <img class="d-block w-100" alt="" src="./img/photos/77586f6ffa9fbc5e.jpg" data-holder-rendered="true">
+                          <div class="carousel-item-background d-none d-md-block"></div>
+                          <div class="carousel-caption d-none d-md-block">
+                            <h3>Slide label</h3>
+                            <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p>
+                          </div>
                         </div>
                       </div>
+                      <a class="carousel-control-prev" href="#carousel-captions" role="button" data-slide="prev">
+                        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
+                        <span class="sr-only">Previous</span>
+                      </a>
+                      <a class="carousel-control-next" href="#carousel-captions" role="button" data-slide="next">
+                        <span class="carousel-control-next-icon" aria-hidden="true"></span>
+                        <span class="sr-only">Next</span>
+                      </a>
                     </div>
-                    <a class="carousel-control-prev" href="#carousel-captions" role="button" data-slide="prev">
-                      <span class="carousel-control-prev-icon" aria-hidden="true"></span>
-                      <span class="sr-only">Previous</span>
-                    </a>
-                    <a class="carousel-control-next" href="#carousel-captions" role="button" data-slide="next">
-                      <span class="carousel-control-next-icon" aria-hidden="true"></span>
-                      <span class="sr-only">Next</span>
-                    </a>
                   </div>
                 </div>
               </div>
             </div>
-          </div>
-        </main>
+          </main>
+        </div>
       </div>
     </div>
-    <script>
-      window.tabler_colors = {
-      'blue': '#206bc4',
-      'azure': '#45aaf2',
-      'indigo': '#6574cd',
-      'purple': '#a55eea',
-      'pink': '#f66d9b',
-      'red': '#fa4654',
-      'orange': '#fd9644',
-      'yellow': '#f1c40f',
-      'lime': '#7bd235',
-      'green': '#5eba00',
-      'teal': '#2bcbba',
-      'cyan': '#17a2b8',
-      'gray': '#868e96',
-      };
-    </script>
     <!-- Libs JS -->
-    <script src="../dist/libs/jquery/dist/jquery.min.js?1576401968"></script>
-    <script src="../dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576401968"></script>
-    <script src="../dist/libs/autosize/dist/autosize.min.js?1576401968"></script>
-    <script src="../dist/libs/imask/dist/imask.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/standalone/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/apexcharts/dist/apexcharts.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/jquery.vmap.min.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.world.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/jquery.vmap.usa.js?1576401968"></script>
-    <script src="../dist/libs/jqvmap/dist/maps/continents/jquery.vmap.europe.js?1576401968"></script>
-    <script src="../dist/libs/peity/jquery.peity.min.js?1576401968"></script>
-    <script src="../dist/libs/selectize/dist/js/selectize.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/core/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/daygrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/interaction/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/timegrid/main.min.js?1576401968"></script>
-    <script src="../dist/libs/fullcalendar/list/main.min.js?1576401968"></script>
+    <script src="./dist/libs/jquery/dist/jquery.min.js?1576701882"></script>
+    <script src="./dist/libs/bootstrap/dist/js/bootstrap.bundle.min.js?1576701882"></script>
     <!-- Tabler Core -->
-    <script src="../dist/js/tabler.min.js?1576401968"></script>
+    <script src="./dist/js/tabler.min.js?1576701882"></script>
     <!-- Tabler Plugins -->
-    <script src="../dist/js/tabler-charts.min.js?1576401968"></script>
+    <script src="./dist/js/tabler-charts.min.js?1576701882"></script>
     <script>
       document.body.style.display = 'block';
     </script>

Some files were not shown because too many files changed in this diff