layout-navbar-overlap.html 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta19
  5. * @link https://tabler.io
  6. * Copyright 2018-2023 The Tabler Authors
  7. * Copyright 2018-2023 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Dashboard - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <!-- CSS files -->
  17. <link href="./dist/css/tabler.min.css?1684106062" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1684106062" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1684106062" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1684106062" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1684106062" rel="stylesheet"/>
  22. <style>
  23. @import url('https://rsms.me/inter/inter.css');
  24. :root {
  25. --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  26. }
  27. body {
  28. font-feature-settings: "cv03", "cv04", "cv11";
  29. }
  30. </style>
  31. </head>
  32. <body >
  33. <script src="./dist/js/demo-theme.min.js?1684106062"></script>
  34. <div class="page">
  35. <!-- Navbar -->
  36. <header class="navbar navbar-expand-md navbar-overlap d-print-none" data-bs-theme="dark">
  37. <div class="container-xl">
  38. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-menu" aria-controls="navbar-menu" aria-expanded="false" aria-label="Toggle navigation">
  39. <span class="navbar-toggler-icon"></span>
  40. </button>
  41. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  42. <a href=".">
  43. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  44. </a>
  45. </h1>
  46. <div class="navbar-nav flex-row order-md-last">
  47. <div class="d-none d-md-flex">
  48. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  49. data-bs-placement="bottom">
  50. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  51. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" /></svg>
  52. </a>
  53. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  54. data-bs-placement="bottom">
  55. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  56. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" /></svg>
  57. </a>
  58. <div class="nav-item dropdown d-none d-md-flex me-3">
  59. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  60. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  61. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  62. <span class="badge bg-red"></span>
  63. </a>
  64. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  65. <div class="card">
  66. <div class="card-header">
  67. <h3 class="card-title">Last updates</h3>
  68. </div>
  69. <div class="list-group list-group-flush list-group-hoverable">
  70. <div class="list-group-item">
  71. <div class="row align-items-center">
  72. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  73. <div class="col text-truncate">
  74. <a href="#" class="text-body d-block">Example 1</a>
  75. <div class="d-block text-muted text-truncate mt-n1">
  76. Change deprecated html tags to text decoration classes (#29604)
  77. </div>
  78. </div>
  79. <div class="col-auto">
  80. <a href="#" class="list-group-item-actions">
  81. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  82. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  83. </a>
  84. </div>
  85. </div>
  86. </div>
  87. <div class="list-group-item">
  88. <div class="row align-items-center">
  89. <div class="col-auto"><span class="status-dot d-block"></span></div>
  90. <div class="col text-truncate">
  91. <a href="#" class="text-body d-block">Example 2</a>
  92. <div class="d-block text-muted text-truncate mt-n1">
  93. justify-content:between ⇒ justify-content:space-between (#29734)
  94. </div>
  95. </div>
  96. <div class="col-auto">
  97. <a href="#" class="list-group-item-actions show">
  98. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  99. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-yellow" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  100. </a>
  101. </div>
  102. </div>
  103. </div>
  104. <div class="list-group-item">
  105. <div class="row align-items-center">
  106. <div class="col-auto"><span class="status-dot d-block"></span></div>
  107. <div class="col text-truncate">
  108. <a href="#" class="text-body d-block">Example 3</a>
  109. <div class="d-block text-muted text-truncate mt-n1">
  110. Update change-version.js (#29736)
  111. </div>
  112. </div>
  113. <div class="col-auto">
  114. <a href="#" class="list-group-item-actions">
  115. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  116. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  117. </a>
  118. </div>
  119. </div>
  120. </div>
  121. <div class="list-group-item">
  122. <div class="row align-items-center">
  123. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  124. <div class="col text-truncate">
  125. <a href="#" class="text-body d-block">Example 4</a>
  126. <div class="d-block text-muted text-truncate mt-n1">
  127. Regenerate package-lock.json (#29730)
  128. </div>
  129. </div>
  130. <div class="col-auto">
  131. <a href="#" class="list-group-item-actions">
  132. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  133. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-muted" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  134. </a>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. <div class="nav-item dropdown">
  144. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  145. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  146. <div class="d-none d-xl-block ps-2">
  147. <div>Paweł Kuna</div>
  148. <div class="mt-1 small text-muted">UI Designer</div>
  149. </div>
  150. </a>
  151. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  152. <a href="#" class="dropdown-item">Status</a>
  153. <a href="./profile.html" class="dropdown-item">Profile</a>
  154. <a href="#" class="dropdown-item">Feedback</a>
  155. <div class="dropdown-divider"></div>
  156. <a href="./settings.html" class="dropdown-item">Settings</a>
  157. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  158. </div>
  159. </div>
  160. </div>
  161. <div class="collapse navbar-collapse" id="navbar-menu">
  162. <div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
  163. <ul class="navbar-nav">
  164. <li class="nav-item">
  165. <a class="nav-link" href="./" >
  166. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  167. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l-2 0l9 -9l9 9l-2 0" /><path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" /><path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" /></svg>
  168. </span>
  169. <span class="nav-link-title">
  170. Home
  171. </span>
  172. </a>
  173. </li>
  174. <li class="nav-item dropdown">
  175. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  176. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  177. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5" /><path d="M12 12l8 -4.5" /><path d="M12 12l0 9" /><path d="M12 12l-8 -4.5" /><path d="M16 5.25l-8 4.5" /></svg>
  178. </span>
  179. <span class="nav-link-title">
  180. Interface
  181. </span>
  182. </a>
  183. <div class="dropdown-menu">
  184. <div class="dropdown-menu-columns">
  185. <div class="dropdown-menu-column">
  186. <a class="dropdown-item" href="./accordion.html">
  187. Accordion
  188. </a>
  189. <a class="dropdown-item" href="./blank.html">
  190. Blank page
  191. </a>
  192. <a class="dropdown-item" href="./badges.html">
  193. Badges
  194. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  195. </a>
  196. <a class="dropdown-item" href="./buttons.html">
  197. Buttons
  198. </a>
  199. <div class="dropend">
  200. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  201. Cards
  202. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  203. </a>
  204. <div class="dropdown-menu">
  205. <a href="./cards.html" class="dropdown-item">
  206. Sample cards
  207. </a>
  208. <a href="./card-actions.html" class="dropdown-item">
  209. Card actions
  210. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  211. </a>
  212. <a href="./cards-masonry.html" class="dropdown-item">
  213. Cards Masonry
  214. </a>
  215. </div>
  216. </div>
  217. <a class="dropdown-item" href="./colors.html">
  218. Colors
  219. </a>
  220. <a class="dropdown-item" href="./datagrid.html">
  221. Data grid
  222. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  223. </a>
  224. <a class="dropdown-item" href="./datatables.html">
  225. Datatables
  226. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  227. </a>
  228. <a class="dropdown-item" href="./dropdowns.html">
  229. Dropdowns
  230. </a>
  231. <a class="dropdown-item" href="./modals.html">
  232. Modals
  233. </a>
  234. <a class="dropdown-item" href="./maps.html">
  235. Maps
  236. </a>
  237. <a class="dropdown-item" href="./map-fullsize.html">
  238. Map fullsize
  239. </a>
  240. <a class="dropdown-item" href="./maps-vector.html">
  241. Vector maps
  242. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  243. </a>
  244. <a class="dropdown-item" href="./navigation.html">
  245. Navigation
  246. </a>
  247. <a class="dropdown-item" href="./charts.html">
  248. Charts
  249. </a>
  250. <a class="dropdown-item" href="./pagination.html">
  251. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  252. Pagination
  253. </a>
  254. </div>
  255. <div class="dropdown-menu-column">
  256. <a class="dropdown-item" href="./placeholder.html">
  257. Placeholder
  258. </a>
  259. <a class="dropdown-item" href="./steps.html">
  260. Steps
  261. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  262. </a>
  263. <a class="dropdown-item" href="./stars-rating.html">
  264. Stars rating
  265. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  266. </a>
  267. <a class="dropdown-item" href="./tabs.html">
  268. Tabs
  269. </a>
  270. <a class="dropdown-item" href="./tables.html">
  271. Tables
  272. </a>
  273. <a class="dropdown-item" href="./carousel.html">
  274. Carousel
  275. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  276. </a>
  277. <a class="dropdown-item" href="./lists.html">
  278. Lists
  279. </a>
  280. <a class="dropdown-item" href="./typography.html">
  281. Typography
  282. </a>
  283. <a class="dropdown-item" href="./offcanvas.html">
  284. Offcanvas
  285. </a>
  286. <a class="dropdown-item" href="./markdown.html">
  287. Markdown
  288. </a>
  289. <a class="dropdown-item" href="./dropzone.html">
  290. Dropzone
  291. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  292. </a>
  293. <a class="dropdown-item" href="./lightbox.html">
  294. Lightbox
  295. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  296. </a>
  297. <a class="dropdown-item" href="./tinymce.html">
  298. TinyMCE
  299. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  300. </a>
  301. <a class="dropdown-item" href="./inline-player.html">
  302. Inline player
  303. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  304. </a>
  305. <div class="dropend">
  306. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  307. Authentication
  308. </a>
  309. <div class="dropdown-menu">
  310. <a href="./sign-in.html" class="dropdown-item">
  311. Sign in
  312. </a>
  313. <a href="./sign-in-link.html" class="dropdown-item">
  314. Sign in link
  315. </a>
  316. <a href="./sign-in-illustration.html" class="dropdown-item">
  317. Sign in with illustration
  318. </a>
  319. <a href="./sign-in-cover.html" class="dropdown-item">
  320. Sign in with cover
  321. </a>
  322. <a href="./sign-up.html" class="dropdown-item">
  323. Sign up
  324. </a>
  325. <a href="./forgot-password.html" class="dropdown-item">
  326. Forgot password
  327. </a>
  328. <a href="./terms-of-service.html" class="dropdown-item">
  329. Terms of service
  330. </a>
  331. <a href="./auth-lock.html" class="dropdown-item">
  332. Lock screen
  333. </a>
  334. </div>
  335. </div>
  336. <div class="dropend">
  337. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  338. <!-- Download SVG icon from http://tabler-icons.io/i/file-minus -->
  339. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M14 3v4a1 1 0 0 0 1 1h4" /><path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" /><path d="M9 14l6 0" /></svg>
  340. Error pages
  341. </a>
  342. <div class="dropdown-menu">
  343. <a href="./error-404.html" class="dropdown-item">
  344. 404 page
  345. </a>
  346. <a href="./error-500.html" class="dropdown-item">
  347. 500 page
  348. </a>
  349. <a href="./error-maintenance.html" class="dropdown-item">
  350. Maintenance page
  351. </a>
  352. </div>
  353. </div>
  354. </div>
  355. </div>
  356. </div>
  357. </li>
  358. <li class="nav-item">
  359. <a class="nav-link" href="./form-elements.html" >
  360. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  361. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 11l3 3l8 -8" /><path d="M20 12v6a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h9" /></svg>
  362. </span>
  363. <span class="nav-link-title">
  364. Forms
  365. </span>
  366. </a>
  367. </li>
  368. <li class="nav-item dropdown">
  369. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  370. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  371. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" /></svg>
  372. </span>
  373. <span class="nav-link-title">
  374. Extra
  375. </span>
  376. </a>
  377. <div class="dropdown-menu">
  378. <div class="dropdown-menu-columns">
  379. <div class="dropdown-menu-column">
  380. <a class="dropdown-item" href="./empty.html">
  381. Empty page
  382. </a>
  383. <a class="dropdown-item" href="./cookie-banner.html">
  384. Cookie banner
  385. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  386. </a>
  387. <a class="dropdown-item" href="./activity.html">
  388. Activity
  389. </a>
  390. <a class="dropdown-item" href="./gallery.html">
  391. Gallery
  392. </a>
  393. <a class="dropdown-item" href="./invoice.html">
  394. Invoice
  395. </a>
  396. <a class="dropdown-item" href="./search-results.html">
  397. Search results
  398. </a>
  399. <a class="dropdown-item" href="./pricing.html">
  400. Pricing cards
  401. </a>
  402. <a class="dropdown-item" href="./pricing-table.html">
  403. Pricing table
  404. </a>
  405. <a class="dropdown-item" href="./faq.html">
  406. FAQ
  407. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  408. </a>
  409. <a class="dropdown-item" href="./users.html">
  410. Users
  411. </a>
  412. <a class="dropdown-item" href="./license.html">
  413. License
  414. </a>
  415. </div>
  416. <div class="dropdown-menu-column">
  417. <a class="dropdown-item" href="./logs.html">
  418. Logs
  419. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  420. </a>
  421. <a class="dropdown-item" href="./music.html">
  422. Music
  423. </a>
  424. <a class="dropdown-item" href="./photogrid.html">
  425. Photogrid
  426. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  427. </a>
  428. <a class="dropdown-item" href="./tasks.html">
  429. Tasks
  430. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  431. </a>
  432. <a class="dropdown-item" href="./uptime.html">
  433. Uptime monitor
  434. </a>
  435. <a class="dropdown-item" href="./widgets.html">
  436. Widgets
  437. </a>
  438. <a class="dropdown-item" href="./wizard.html">
  439. Wizard
  440. </a>
  441. <a class="dropdown-item" href="./settings.html">
  442. Settings
  443. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  444. </a>
  445. <a class="dropdown-item" href="./trial-ended.html">
  446. Trial ended
  447. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  448. </a>
  449. <a class="dropdown-item" href="./job-listing.html">
  450. Job listing
  451. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  452. </a>
  453. <a class="dropdown-item" href="./page-loader.html">
  454. Page loader
  455. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  456. </a>
  457. </div>
  458. </div>
  459. </div>
  460. </li>
  461. <li class="nav-item active dropdown">
  462. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  463. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  464. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M4 13m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /><path d="M14 15m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v1a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z" /></svg>
  465. </span>
  466. <span class="nav-link-title">
  467. Layout
  468. </span>
  469. </a>
  470. <div class="dropdown-menu">
  471. <div class="dropdown-menu-columns">
  472. <div class="dropdown-menu-column">
  473. <a class="dropdown-item" href="./layout-horizontal.html">
  474. Horizontal
  475. </a>
  476. <a class="dropdown-item" href="./layout-boxed.html">
  477. Boxed
  478. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  479. </a>
  480. <a class="dropdown-item" href="./layout-vertical.html">
  481. Vertical
  482. </a>
  483. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  484. Vertical transparent
  485. </a>
  486. <a class="dropdown-item" href="./layout-vertical-right.html">
  487. Right vertical
  488. </a>
  489. <a class="dropdown-item" href="./layout-condensed.html">
  490. Condensed
  491. </a>
  492. <a class="dropdown-item" href="./layout-combo.html">
  493. Combined
  494. </a>
  495. </div>
  496. <div class="dropdown-menu-column">
  497. <a class="dropdown-item" href="./layout-navbar-dark.html">
  498. Navbar dark
  499. </a>
  500. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  501. Navbar sticky
  502. </a>
  503. <a class="dropdown-item active" href="./layout-navbar-overlap.html">
  504. Navbar overlap
  505. </a>
  506. <a class="dropdown-item" href="./layout-rtl.html">
  507. RTL mode
  508. </a>
  509. <a class="dropdown-item" href="./layout-fluid.html">
  510. Fluid
  511. </a>
  512. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  513. Fluid vertical
  514. </a>
  515. </div>
  516. </div>
  517. </div>
  518. </li>
  519. <li class="nav-item">
  520. <a class="nav-link" href="./icons.html" >
  521. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  522. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  523. </span>
  524. <span class="nav-link-title">
  525. 4158 icons
  526. </span>
  527. </a>
  528. </li>
  529. <li class="nav-item dropdown">
  530. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  531. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  532. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0" /><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M15 15l3.35 3.35" /><path d="M9 15l-3.35 3.35" /><path d="M5.65 5.65l3.35 3.35" /><path d="M18.35 5.65l-3.35 3.35" /></svg>
  533. </span>
  534. <span class="nav-link-title">
  535. Help
  536. </span>
  537. </a>
  538. <div class="dropdown-menu">
  539. <a class="dropdown-item" href="https://tabler.io/docs" target="_blank" rel="noopener">
  540. Documentation
  541. </a>
  542. <a class="dropdown-item" href="./changelog.html">
  543. Changelog
  544. </a>
  545. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  546. Source code
  547. </a>
  548. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  549. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  550. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline me-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  551. Sponsor project!
  552. </a>
  553. </div>
  554. </li>
  555. </ul>
  556. </div>
  557. </div>
  558. </div>
  559. </header>
  560. <div class="page-wrapper">
  561. <!-- Page header -->
  562. <div class="page-header d-print-none text-white">
  563. <div class="container-xl">
  564. <div class="row g-2 align-items-center">
  565. <div class="col">
  566. <!-- Page pre-title -->
  567. <div class="page-pretitle">
  568. Overview
  569. </div>
  570. <h2 class="page-title">
  571. Navbar overlap layout
  572. </h2>
  573. </div>
  574. <!-- Page title actions -->
  575. <div class="col-auto ms-auto d-print-none">
  576. <div class="btn-list">
  577. <span class="d-none d-sm-inline">
  578. <a href="#" class="btn btn-dark">
  579. New view
  580. </a>
  581. </span>
  582. <a href="#" class="btn btn-primary d-none d-sm-inline-block" data-bs-toggle="modal" data-bs-target="#modal-report">
  583. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  584. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  585. Create new report
  586. </a>
  587. <a href="#" class="btn btn-primary d-sm-none btn-icon" data-bs-toggle="modal" data-bs-target="#modal-report" aria-label="Create new report">
  588. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  589. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  590. </a>
  591. </div>
  592. </div>
  593. </div>
  594. </div>
  595. </div>
  596. <!-- Page body -->
  597. <div class="page-body">
  598. <div class="container-xl">
  599. <div class="row row-deck row-cards">
  600. <div class="col-sm-6 col-lg-3">
  601. <div class="card">
  602. <div class="card-body">
  603. <div class="d-flex align-items-center">
  604. <div class="subheader">Sales</div>
  605. <div class="ms-auto lh-1">
  606. <div class="dropdown">
  607. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  608. <div class="dropdown-menu dropdown-menu-end">
  609. <a class="dropdown-item active" href="#">Last 7 days</a>
  610. <a class="dropdown-item" href="#">Last 30 days</a>
  611. <a class="dropdown-item" href="#">Last 3 months</a>
  612. </div>
  613. </div>
  614. </div>
  615. </div>
  616. <div class="h1 mb-3">75%</div>
  617. <div class="d-flex mb-2">
  618. <div>Conversion rate</div>
  619. <div class="ms-auto">
  620. <span class="text-green d-inline-flex align-items-center lh-1">
  621. 7% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  622. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  623. </span>
  624. </div>
  625. </div>
  626. <div class="progress progress-sm">
  627. <div class="progress-bar bg-primary" style="width: 75%" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" aria-label="75% Complete">
  628. <span class="visually-hidden">75% Complete</span>
  629. </div>
  630. </div>
  631. </div>
  632. </div>
  633. </div>
  634. <div class="col-sm-6 col-lg-3">
  635. <div class="card">
  636. <div class="card-body">
  637. <div class="d-flex align-items-center">
  638. <div class="subheader">Revenue</div>
  639. <div class="ms-auto lh-1">
  640. <div class="dropdown">
  641. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  642. <div class="dropdown-menu dropdown-menu-end">
  643. <a class="dropdown-item active" href="#">Last 7 days</a>
  644. <a class="dropdown-item" href="#">Last 30 days</a>
  645. <a class="dropdown-item" href="#">Last 3 months</a>
  646. </div>
  647. </div>
  648. </div>
  649. </div>
  650. <div class="d-flex align-items-baseline">
  651. <div class="h1 mb-0 me-2">$4,300</div>
  652. <div class="me-auto">
  653. <span class="text-green d-inline-flex align-items-center lh-1">
  654. 8% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  655. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  656. </span>
  657. </div>
  658. </div>
  659. </div>
  660. <div id="chart-revenue-bg" class="chart-sm"></div>
  661. </div>
  662. </div>
  663. <div class="col-sm-6 col-lg-3">
  664. <div class="card">
  665. <div class="card-body">
  666. <div class="d-flex align-items-center">
  667. <div class="subheader">New clients</div>
  668. <div class="ms-auto lh-1">
  669. <div class="dropdown">
  670. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  671. <div class="dropdown-menu dropdown-menu-end">
  672. <a class="dropdown-item active" href="#">Last 7 days</a>
  673. <a class="dropdown-item" href="#">Last 30 days</a>
  674. <a class="dropdown-item" href="#">Last 3 months</a>
  675. </div>
  676. </div>
  677. </div>
  678. </div>
  679. <div class="d-flex align-items-baseline">
  680. <div class="h1 mb-3 me-2">6,782</div>
  681. <div class="me-auto">
  682. <span class="text-yellow d-inline-flex align-items-center lh-1">
  683. 0% <!-- Download SVG icon from http://tabler-icons.io/i/minus -->
  684. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l14 0" /></svg>
  685. </span>
  686. </div>
  687. </div>
  688. <div id="chart-new-clients" class="chart-sm"></div>
  689. </div>
  690. </div>
  691. </div>
  692. <div class="col-sm-6 col-lg-3">
  693. <div class="card">
  694. <div class="card-body">
  695. <div class="d-flex align-items-center">
  696. <div class="subheader">Active users</div>
  697. <div class="ms-auto lh-1">
  698. <div class="dropdown">
  699. <a class="dropdown-toggle text-muted" href="#" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Last 7 days</a>
  700. <div class="dropdown-menu dropdown-menu-end">
  701. <a class="dropdown-item active" href="#">Last 7 days</a>
  702. <a class="dropdown-item" href="#">Last 30 days</a>
  703. <a class="dropdown-item" href="#">Last 3 months</a>
  704. </div>
  705. </div>
  706. </div>
  707. </div>
  708. <div class="d-flex align-items-baseline">
  709. <div class="h1 mb-3 me-2">2,986</div>
  710. <div class="me-auto">
  711. <span class="text-green d-inline-flex align-items-center lh-1">
  712. 4% <!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  713. <svg xmlns="http://www.w3.org/2000/svg" class="icon ms-1" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  714. </span>
  715. </div>
  716. </div>
  717. <div id="chart-active-users" class="chart-sm"></div>
  718. </div>
  719. </div>
  720. </div>
  721. <div class="col-12">
  722. <div class="row row-cards">
  723. <div class="col-sm-6 col-lg-3">
  724. <div class="card card-sm">
  725. <div class="card-body">
  726. <div class="row align-items-center">
  727. <div class="col-auto">
  728. <span class="bg-primary text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/currency-dollar -->
  729. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M16.7 8a3 3 0 0 0 -2.7 -2h-4a3 3 0 0 0 0 6h4a3 3 0 0 1 0 6h-4a3 3 0 0 1 -2.7 -2" /><path d="M12 3v3m0 12v3" /></svg>
  730. </span>
  731. </div>
  732. <div class="col">
  733. <div class="font-weight-medium">
  734. 132 Sales
  735. </div>
  736. <div class="text-muted">
  737. 12 waiting payments
  738. </div>
  739. </div>
  740. </div>
  741. </div>
  742. </div>
  743. </div>
  744. <div class="col-sm-6 col-lg-3">
  745. <div class="card card-sm">
  746. <div class="card-body">
  747. <div class="row align-items-center">
  748. <div class="col-auto">
  749. <span class="bg-green text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/shopping-cart -->
  750. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" /><path d="M17 17h-11v-14h-2" /><path d="M6 5l14 1l-1 7h-13" /></svg>
  751. </span>
  752. </div>
  753. <div class="col">
  754. <div class="font-weight-medium">
  755. 78 Orders
  756. </div>
  757. <div class="text-muted">
  758. 32 shipped
  759. </div>
  760. </div>
  761. </div>
  762. </div>
  763. </div>
  764. </div>
  765. <div class="col-sm-6 col-lg-3">
  766. <div class="card card-sm">
  767. <div class="card-body">
  768. <div class="row align-items-center">
  769. <div class="col-auto">
  770. <span class="bg-twitter text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-twitter -->
  771. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M22 4.01c-1 .49 -1.98 .689 -3 .99c-1.121 -1.265 -2.783 -1.335 -4.38 -.737s-2.643 2.06 -2.62 3.737v1c-3.245 .083 -6.135 -1.395 -8 -4c0 0 -4.182 7.433 4 11c-1.872 1.247 -3.739 2.088 -6 2c3.308 1.803 6.913 2.423 10.034 1.517c3.58 -1.04 6.522 -3.723 7.651 -7.742a13.84 13.84 0 0 0 .497 -3.753c0 -.249 1.51 -2.772 1.818 -4.013z" /></svg>
  772. </span>
  773. </div>
  774. <div class="col">
  775. <div class="font-weight-medium">
  776. 623 Shares
  777. </div>
  778. <div class="text-muted">
  779. 16 today
  780. </div>
  781. </div>
  782. </div>
  783. </div>
  784. </div>
  785. </div>
  786. <div class="col-sm-6 col-lg-3">
  787. <div class="card card-sm">
  788. <div class="card-body">
  789. <div class="row align-items-center">
  790. <div class="col-auto">
  791. <span class="bg-facebook text-white avatar"><!-- Download SVG icon from http://tabler-icons.io/i/brand-facebook -->
  792. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M7 10v4h3v7h4v-7h3l1 -4h-4v-2a1 1 0 0 1 1 -1h3v-4h-3a5 5 0 0 0 -5 5v2h-3" /></svg>
  793. </span>
  794. </div>
  795. <div class="col">
  796. <div class="font-weight-medium">
  797. 132 Likes
  798. </div>
  799. <div class="text-muted">
  800. 21 today
  801. </div>
  802. </div>
  803. </div>
  804. </div>
  805. </div>
  806. </div>
  807. </div>
  808. </div>
  809. <div class="col-lg-6">
  810. <div class="card">
  811. <div class="card-body">
  812. <h3 class="card-title">Traffic summary</h3>
  813. <div id="chart-mentions" class="chart-lg"></div>
  814. </div>
  815. </div>
  816. </div>
  817. <div class="col-lg-6">
  818. <div class="card">
  819. <div class="card-body">
  820. <h3 class="card-title">Locations</h3>
  821. <div class="ratio ratio-21x9">
  822. <div>
  823. <div id="map-world" class="w-100 h-100"></div>
  824. </div>
  825. </div>
  826. </div>
  827. </div>
  828. </div>
  829. <div class="col-lg-6">
  830. <div class="row row-cards">
  831. <div class="col-12">
  832. <div class="card">
  833. <div class="card-body">
  834. <p class="mb-3">Using Storage <strong>6854.45 MB </strong>of 8 GB</p>
  835. <div class="progress progress-separated mb-3">
  836. <div class="progress-bar bg-primary" role="progressbar" style="width: 44%" aria-label="Regular"></div>
  837. <div class="progress-bar bg-info" role="progressbar" style="width: 19%" aria-label="System"></div>
  838. <div class="progress-bar bg-success" role="progressbar" style="width: 9%" aria-label="Shared"></div>
  839. </div>
  840. <div class="row">
  841. <div class="col-auto d-flex align-items-center pe-2">
  842. <span class="legend me-2 bg-primary"></span>
  843. <span>Regular</span>
  844. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">915MB</span>
  845. </div>
  846. <div class="col-auto d-flex align-items-center px-2">
  847. <span class="legend me-2 bg-info"></span>
  848. <span>System</span>
  849. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">415MB</span>
  850. </div>
  851. <div class="col-auto d-flex align-items-center px-2">
  852. <span class="legend me-2 bg-success"></span>
  853. <span>Shared</span>
  854. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">201MB</span>
  855. </div>
  856. <div class="col-auto d-flex align-items-center ps-2">
  857. <span class="legend me-2"></span>
  858. <span>Free</span>
  859. <span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-muted">612MB</span>
  860. </div>
  861. </div>
  862. </div>
  863. </div>
  864. </div>
  865. <div class="col-12">
  866. <div class="card" style="height: 28rem">
  867. <div class="card-body card-body-scrollable card-body-scrollable-shadow">
  868. <div class="divide-y">
  869. <div>
  870. <div class="row">
  871. <div class="col-auto">
  872. <span class="avatar">JL</span>
  873. </div>
  874. <div class="col">
  875. <div class="text-truncate">
  876. <strong>Jeffie Lewzey</strong> commented on your <strong>"I'm not a witch."</strong> post.
  877. </div>
  878. <div class="text-muted">yesterday</div>
  879. </div>
  880. <div class="col-auto align-self-center">
  881. <div class="badge bg-primary"></div>
  882. </div>
  883. </div>
  884. </div>
  885. <div>
  886. <div class="row">
  887. <div class="col-auto">
  888. <span class="avatar" style="background-image: url(./static/avatars/002m.jpg)"></span>
  889. </div>
  890. <div class="col">
  891. <div class="text-truncate">
  892. It's <strong>Mallory Hulme</strong>'s birthday. Wish him well!
  893. </div>
  894. <div class="text-muted">2 days ago</div>
  895. </div>
  896. <div class="col-auto align-self-center">
  897. <div class="badge bg-primary"></div>
  898. </div>
  899. </div>
  900. </div>
  901. <div>
  902. <div class="row">
  903. <div class="col-auto">
  904. <span class="avatar" style="background-image: url(./static/avatars/003m.jpg)"></span>
  905. </div>
  906. <div class="col">
  907. <div class="text-truncate">
  908. <strong>Dunn Slane</strong> posted <strong>"Well, what do you want?"</strong>.
  909. </div>
  910. <div class="text-muted">today</div>
  911. </div>
  912. <div class="col-auto align-self-center">
  913. <div class="badge bg-primary"></div>
  914. </div>
  915. </div>
  916. </div>
  917. <div>
  918. <div class="row">
  919. <div class="col-auto">
  920. <span class="avatar" style="background-image: url(./static/avatars/000f.jpg)"></span>
  921. </div>
  922. <div class="col">
  923. <div class="text-truncate">
  924. <strong>Emmy Levet</strong> created a new project <strong>Morning alarm clock</strong>.
  925. </div>
  926. <div class="text-muted">4 days ago</div>
  927. </div>
  928. <div class="col-auto align-self-center">
  929. <div class="badge bg-primary"></div>
  930. </div>
  931. </div>
  932. </div>
  933. <div>
  934. <div class="row">
  935. <div class="col-auto">
  936. <span class="avatar" style="background-image: url(./static/avatars/001f.jpg)"></span>
  937. </div>
  938. <div class="col">
  939. <div class="text-truncate">
  940. <strong>Maryjo Lebarree</strong> liked your photo.
  941. </div>
  942. <div class="text-muted">2 days ago</div>
  943. </div>
  944. </div>
  945. </div>
  946. <div>
  947. <div class="row">
  948. <div class="col-auto">
  949. <span class="avatar">EP</span>
  950. </div>
  951. <div class="col">
  952. <div class="text-truncate">
  953. <strong>Egan Poetz</strong> registered new client as <strong>Trilia</strong>.
  954. </div>
  955. <div class="text-muted">yesterday</div>
  956. </div>
  957. </div>
  958. </div>
  959. <div>
  960. <div class="row">
  961. <div class="col-auto">
  962. <span class="avatar" style="background-image: url(./static/avatars/002f.jpg)"></span>
  963. </div>
  964. <div class="col">
  965. <div class="text-truncate">
  966. <strong>Kellie Skingley</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>.
  967. </div>
  968. <div class="text-muted">2 days ago</div>
  969. </div>
  970. </div>
  971. </div>
  972. <div>
  973. <div class="row">
  974. <div class="col-auto">
  975. <span class="avatar" style="background-image: url(./static/avatars/003f.jpg)"></span>
  976. </div>
  977. <div class="col">
  978. <div class="text-truncate">
  979. <strong>Christabel Charlwood</strong> created a new project for <strong>Wikibox</strong>.
  980. </div>
  981. <div class="text-muted">4 days ago</div>
  982. </div>
  983. </div>
  984. </div>
  985. <div>
  986. <div class="row">
  987. <div class="col-auto">
  988. <span class="avatar">HS</span>
  989. </div>
  990. <div class="col">
  991. <div class="text-truncate">
  992. <strong>Haskel Shelper</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>.
  993. </div>
  994. <div class="text-muted">today</div>
  995. </div>
  996. </div>
  997. </div>
  998. <div>
  999. <div class="row">
  1000. <div class="col-auto">
  1001. <span class="avatar" style="background-image: url(./static/avatars/006m.jpg)"></span>
  1002. </div>
  1003. <div class="col">
  1004. <div class="text-truncate">
  1005. <strong>Lorry Mion</strong> liked <strong>Tabler UI Kit</strong>.
  1006. </div>
  1007. <div class="text-muted">yesterday</div>
  1008. </div>
  1009. </div>
  1010. </div>
  1011. <div>
  1012. <div class="row">
  1013. <div class="col-auto">
  1014. <span class="avatar" style="background-image: url(./static/avatars/004f.jpg)"></span>
  1015. </div>
  1016. <div class="col">
  1017. <div class="text-truncate">
  1018. <strong>Leesa Beaty</strong> posted new video.
  1019. </div>
  1020. <div class="text-muted">2 days ago</div>
  1021. </div>
  1022. </div>
  1023. </div>
  1024. <div>
  1025. <div class="row">
  1026. <div class="col-auto">
  1027. <span class="avatar" style="background-image: url(./static/avatars/007m.jpg)"></span>
  1028. </div>
  1029. <div class="col">
  1030. <div class="text-truncate">
  1031. <strong>Perren Keemar</strong> and 3 others followed you.
  1032. </div>
  1033. <div class="text-muted">2 days ago</div>
  1034. </div>
  1035. </div>
  1036. </div>
  1037. <div>
  1038. <div class="row">
  1039. <div class="col-auto">
  1040. <span class="avatar">SA</span>
  1041. </div>
  1042. <div class="col">
  1043. <div class="text-truncate">
  1044. <strong>Sunny Airey</strong> upload 3 new photos to category <strong>Inspirations</strong>.
  1045. </div>
  1046. <div class="text-muted">2 days ago</div>
  1047. </div>
  1048. </div>
  1049. </div>
  1050. <div>
  1051. <div class="row">
  1052. <div class="col-auto">
  1053. <span class="avatar" style="background-image: url(./static/avatars/009m.jpg)"></span>
  1054. </div>
  1055. <div class="col">
  1056. <div class="text-truncate">
  1057. <strong>Geoffry Flaunders</strong> made a <strong>$10</strong> donation.
  1058. </div>
  1059. <div class="text-muted">2 days ago</div>
  1060. </div>
  1061. </div>
  1062. </div>
  1063. <div>
  1064. <div class="row">
  1065. <div class="col-auto">
  1066. <span class="avatar" style="background-image: url(./static/avatars/010m.jpg)"></span>
  1067. </div>
  1068. <div class="col">
  1069. <div class="text-truncate">
  1070. <strong>Thatcher Keel</strong> created a profile.
  1071. </div>
  1072. <div class="text-muted">3 days ago</div>
  1073. </div>
  1074. </div>
  1075. </div>
  1076. <div>
  1077. <div class="row">
  1078. <div class="col-auto">
  1079. <span class="avatar" style="background-image: url(./static/avatars/005f.jpg)"></span>
  1080. </div>
  1081. <div class="col">
  1082. <div class="text-truncate">
  1083. <strong>Dyann Escala</strong> hosted the event <strong>Tabler UI Birthday</strong>.
  1084. </div>
  1085. <div class="text-muted">4 days ago</div>
  1086. </div>
  1087. </div>
  1088. </div>
  1089. <div>
  1090. <div class="row">
  1091. <div class="col-auto">
  1092. <span class="avatar" style="background-image: url(./static/avatars/006f.jpg)"></span>
  1093. </div>
  1094. <div class="col">
  1095. <div class="text-truncate">
  1096. <strong>Avivah Mugleston</strong> mentioned you on <strong>Best of 2020</strong>.
  1097. </div>
  1098. <div class="text-muted">2 days ago</div>
  1099. </div>
  1100. </div>
  1101. </div>
  1102. <div>
  1103. <div class="row">
  1104. <div class="col-auto">
  1105. <span class="avatar">AA</span>
  1106. </div>
  1107. <div class="col">
  1108. <div class="text-truncate">
  1109. <strong>Arlie Armstead</strong> sent a Review Request to <strong>Amanda Blake</strong>.
  1110. </div>
  1111. <div class="text-muted">2 days ago</div>
  1112. </div>
  1113. </div>
  1114. </div>
  1115. </div>
  1116. </div>
  1117. </div>
  1118. </div>
  1119. </div>
  1120. </div>
  1121. <div class="col-lg-6">
  1122. <div class="card">
  1123. <div class="card-header border-0">
  1124. <div class="card-title">Development activity</div>
  1125. </div>
  1126. <div class="position-relative">
  1127. <div class="position-absolute top-0 left-0 px-3 mt-1 w-75">
  1128. <div class="row g-2">
  1129. <div class="col-auto">
  1130. <div class="chart-sparkline chart-sparkline-square" id="sparkline-activity"></div>
  1131. </div>
  1132. <div class="col">
  1133. <div>Today's Earning: $4,262.40</div>
  1134. <div class="text-muted"><!-- Download SVG icon from http://tabler-icons.io/i/trending-up -->
  1135. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-inline text-green" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M3 17l6 -6l4 4l8 -8" /><path d="M14 7l7 0l0 7" /></svg>
  1136. +5% more than yesterday</div>
  1137. </div>
  1138. </div>
  1139. </div>
  1140. <div id="chart-development-activity"></div>
  1141. </div>
  1142. <div class="card-table table-responsive">
  1143. <table class="table table-vcenter">
  1144. <thead>
  1145. <tr>
  1146. <th>User</th>
  1147. <th>Commit</th>
  1148. <th>Date</th>
  1149. </tr>
  1150. </thead>
  1151. <tbody>
  1152. <tr>
  1153. <td class="w-1">
  1154. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1155. </td>
  1156. <td class="td-truncate">
  1157. <div class="text-truncate">
  1158. Fix dart Sass compatibility (#29755)
  1159. </div>
  1160. </td>
  1161. <td class="text-nowrap text-muted">28 Nov 2019</td>
  1162. </tr>
  1163. <tr>
  1164. <td class="w-1">
  1165. <span class="avatar avatar-sm">JL</span>
  1166. </td>
  1167. <td class="td-truncate">
  1168. <div class="text-truncate">
  1169. Change deprecated html tags to text decoration classes (#29604)
  1170. </div>
  1171. </td>
  1172. <td class="text-nowrap text-muted">27 Nov 2019</td>
  1173. </tr>
  1174. <tr>
  1175. <td class="w-1">
  1176. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1177. </td>
  1178. <td class="td-truncate">
  1179. <div class="text-truncate">
  1180. justify-content:between ⇒ justify-content:space-between (#29734)
  1181. </div>
  1182. </td>
  1183. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1184. </tr>
  1185. <tr>
  1186. <td class="w-1">
  1187. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1188. </td>
  1189. <td class="td-truncate">
  1190. <div class="text-truncate">
  1191. Update change-version.js (#29736)
  1192. </div>
  1193. </td>
  1194. <td class="text-nowrap text-muted">26 Nov 2019</td>
  1195. </tr>
  1196. <tr>
  1197. <td class="w-1">
  1198. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1199. </td>
  1200. <td class="td-truncate">
  1201. <div class="text-truncate">
  1202. Regenerate package-lock.json (#29730)
  1203. </div>
  1204. </td>
  1205. <td class="text-nowrap text-muted">25 Nov 2019</td>
  1206. </tr>
  1207. </tbody>
  1208. </table>
  1209. </div>
  1210. </div>
  1211. </div>
  1212. <div class="col-12">
  1213. <div class="card card-md">
  1214. <div class="card-stamp card-stamp-lg">
  1215. <div class="card-stamp-icon bg-primary">
  1216. <!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  1217. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 11a7 7 0 0 1 14 0v7a1.78 1.78 0 0 1 -3.1 1.4a1.65 1.65 0 0 0 -2.6 0a1.65 1.65 0 0 1 -2.6 0a1.65 1.65 0 0 0 -2.6 0a1.78 1.78 0 0 1 -3.1 -1.4v-7" /><path d="M10 10l.01 0" /><path d="M14 10l.01 0" /><path d="M10 14a3.5 3.5 0 0 0 4 0" /></svg>
  1218. </div>
  1219. </div>
  1220. <div class="card-body">
  1221. <div class="row align-items-center">
  1222. <div class="col-10">
  1223. <h3 class="h1">Tabler Icons</h3>
  1224. <div class="markdown text-muted">
  1225. All icons come from the Tabler Icons set and are MIT-licensed. Visit
  1226. <a href="https://tabler-icons.io" target="_blank" rel="noopener">tabler-icons.io</a>,
  1227. download any of the 4158 icons in SVG, PNG or&nbsp;React and use them in your favourite design tools.
  1228. </div>
  1229. <div class="mt-3">
  1230. <a href="https://tabler-icons.io" class="btn btn-primary" target="_blank" rel="noopener">Download icons</a>
  1231. </div>
  1232. </div>
  1233. </div>
  1234. </div>
  1235. </div>
  1236. </div>
  1237. <div class="col-md-12 col-lg-8">
  1238. <div class="card">
  1239. <div class="card-header">
  1240. <h3 class="card-title">Most Visited Pages</h3>
  1241. </div>
  1242. <div class="card-table table-responsive">
  1243. <table class="table table-vcenter">
  1244. <thead>
  1245. <tr>
  1246. <th>Page name</th>
  1247. <th>Visitors</th>
  1248. <th>Unique</th>
  1249. <th colspan="2">Bounce rate</th>
  1250. </tr>
  1251. </thead>
  1252. <tr>
  1253. <td>
  1254. /
  1255. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1256. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1257. </a>
  1258. </td>
  1259. <td class="text-muted">4,896</td>
  1260. <td class="text-muted">3,654</td>
  1261. <td class="text-muted">82.54%</td>
  1262. <td class="text-end w-1">
  1263. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-1"></div>
  1264. </td>
  1265. </tr>
  1266. <tr>
  1267. <td>
  1268. /form-elements.html
  1269. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1270. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1271. </a>
  1272. </td>
  1273. <td class="text-muted">3,652</td>
  1274. <td class="text-muted">3,215</td>
  1275. <td class="text-muted">76.29%</td>
  1276. <td class="text-end w-1">
  1277. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-2"></div>
  1278. </td>
  1279. </tr>
  1280. <tr>
  1281. <td>
  1282. /index.html
  1283. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1284. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1285. </a>
  1286. </td>
  1287. <td class="text-muted">3,256</td>
  1288. <td class="text-muted">2,865</td>
  1289. <td class="text-muted">72.65%</td>
  1290. <td class="text-end w-1">
  1291. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-3"></div>
  1292. </td>
  1293. </tr>
  1294. <tr>
  1295. <td>
  1296. /icons.html
  1297. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1298. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1299. </a>
  1300. </td>
  1301. <td class="text-muted">986</td>
  1302. <td class="text-muted">865</td>
  1303. <td class="text-muted">44.89%</td>
  1304. <td class="text-end w-1">
  1305. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-4"></div>
  1306. </td>
  1307. </tr>
  1308. <tr>
  1309. <td>
  1310. /docs/
  1311. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1312. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1313. </a>
  1314. </td>
  1315. <td class="text-muted">912</td>
  1316. <td class="text-muted">822</td>
  1317. <td class="text-muted">41.12%</td>
  1318. <td class="text-end w-1">
  1319. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-5"></div>
  1320. </td>
  1321. </tr>
  1322. <tr>
  1323. <td>
  1324. /accordion.html
  1325. <a href="#" class="ms-1" aria-label="Open website"><!-- Download SVG icon from http://tabler-icons.io/i/link -->
  1326. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 15l6 -6" /><path d="M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464" /><path d="M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463" /></svg>
  1327. </a>
  1328. </td>
  1329. <td class="text-muted">855</td>
  1330. <td class="text-muted">798</td>
  1331. <td class="text-muted">32.65%</td>
  1332. <td class="text-end w-1">
  1333. <div class="chart-sparkline chart-sparkline-sm" id="sparkline-bounce-rate-6"></div>
  1334. </td>
  1335. </tr>
  1336. </table>
  1337. </div>
  1338. </div>
  1339. </div>
  1340. <div class="col-md-6 col-lg-4">
  1341. <a href="https://github.com/sponsors/codecalm" class="card card-sponsor" target="_blank" rel="noopener" style="background-image: url(./static/sponsor-banner-homepage.svg)" aria-label="Sponsor Tabler!">
  1342. <div class="card-body"></div>
  1343. </a>
  1344. </div>
  1345. <div class="col-md-6 col-lg-4">
  1346. <div class="card">
  1347. <div class="card-header">
  1348. <h3 class="card-title">Social Media Traffic</h3>
  1349. </div>
  1350. <table class="table card-table table-vcenter">
  1351. <thead>
  1352. <tr>
  1353. <th>Network</th>
  1354. <th colspan="2">Visitors</th>
  1355. </tr>
  1356. </thead>
  1357. <tbody>
  1358. <tr>
  1359. <td>Instagram</td>
  1360. <td>3,550</td>
  1361. <td class="w-50">
  1362. <div class="progress progress-xs">
  1363. <div class="progress-bar bg-primary" style="width: 71.0%"></div>
  1364. </div>
  1365. </td>
  1366. </tr>
  1367. <tr>
  1368. <td>Twitter</td>
  1369. <td>1,798</td>
  1370. <td class="w-50">
  1371. <div class="progress progress-xs">
  1372. <div class="progress-bar bg-primary" style="width: 35.96%"></div>
  1373. </div>
  1374. </td>
  1375. </tr>
  1376. <tr>
  1377. <td>Facebook</td>
  1378. <td>1,245</td>
  1379. <td class="w-50">
  1380. <div class="progress progress-xs">
  1381. <div class="progress-bar bg-primary" style="width: 24.9%"></div>
  1382. </div>
  1383. </td>
  1384. </tr>
  1385. <tr>
  1386. <td>TikTok</td>
  1387. <td>986</td>
  1388. <td class="w-50">
  1389. <div class="progress progress-xs">
  1390. <div class="progress-bar bg-primary" style="width: 19.72%"></div>
  1391. </div>
  1392. </td>
  1393. </tr>
  1394. <tr>
  1395. <td>Pinterest</td>
  1396. <td>854</td>
  1397. <td class="w-50">
  1398. <div class="progress progress-xs">
  1399. <div class="progress-bar bg-primary" style="width: 17.08%"></div>
  1400. </div>
  1401. </td>
  1402. </tr>
  1403. <tr>
  1404. <td>VK</td>
  1405. <td>650</td>
  1406. <td class="w-50">
  1407. <div class="progress progress-xs">
  1408. <div class="progress-bar bg-primary" style="width: 13.0%"></div>
  1409. </div>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>Pinterest</td>
  1414. <td>420</td>
  1415. <td class="w-50">
  1416. <div class="progress progress-xs">
  1417. <div class="progress-bar bg-primary" style="width: 8.4%"></div>
  1418. </div>
  1419. </td>
  1420. </tr>
  1421. </tbody>
  1422. </table>
  1423. </div>
  1424. </div>
  1425. <div class="col-md-12 col-lg-8">
  1426. <div class="card">
  1427. <div class="card-header">
  1428. <h3 class="card-title">Tasks</h3>
  1429. </div>
  1430. <div class="table-responsive">
  1431. <table class="table card-table table-vcenter">
  1432. <tr>
  1433. <td class="w-1 pe-0">
  1434. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1435. </td>
  1436. <td class="w-100">
  1437. <a href="#" class="text-reset">Extend the data model.</a>
  1438. </td>
  1439. <td class="text-nowrap text-muted">
  1440. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1441. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1442. August 04, 2021
  1443. </td>
  1444. <td class="text-nowrap">
  1445. <a href="#" class="text-muted">
  1446. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1447. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1448. 2/7
  1449. </a>
  1450. </td>
  1451. <td class="text-nowrap">
  1452. <a href="#" class="text-muted">
  1453. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1454. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1455. 3</a>
  1456. </td>
  1457. <td>
  1458. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  1459. </td>
  1460. </tr>
  1461. <tr>
  1462. <td class="w-1 pe-0">
  1463. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1464. </td>
  1465. <td class="w-100">
  1466. <a href="#" class="text-reset">Verify the event flow.</a>
  1467. </td>
  1468. <td class="text-nowrap text-muted">
  1469. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1470. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1471. January 03, 2019
  1472. </td>
  1473. <td class="text-nowrap">
  1474. <a href="#" class="text-muted">
  1475. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1476. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1477. 3/10
  1478. </a>
  1479. </td>
  1480. <td class="text-nowrap">
  1481. <a href="#" class="text-muted">
  1482. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1483. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1484. 6</a>
  1485. </td>
  1486. <td>
  1487. <span class="avatar avatar-sm">JL</span>
  1488. </td>
  1489. </tr>
  1490. <tr>
  1491. <td class="w-1 pe-0">
  1492. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1493. </td>
  1494. <td class="w-100">
  1495. <a href="#" class="text-reset">Database backup and maintenance</a>
  1496. </td>
  1497. <td class="text-nowrap text-muted">
  1498. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1499. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1500. December 28, 2018
  1501. </td>
  1502. <td class="text-nowrap">
  1503. <a href="#" class="text-muted">
  1504. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1505. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1506. 0/6
  1507. </a>
  1508. </td>
  1509. <td class="text-nowrap">
  1510. <a href="#" class="text-muted">
  1511. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1512. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1513. 1</a>
  1514. </td>
  1515. <td>
  1516. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  1517. </td>
  1518. </tr>
  1519. <tr>
  1520. <td class="w-1 pe-0">
  1521. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1522. </td>
  1523. <td class="w-100">
  1524. <a href="#" class="text-reset">Identify the implementation team.</a>
  1525. </td>
  1526. <td class="text-nowrap text-muted">
  1527. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1528. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1529. November 07, 2020
  1530. </td>
  1531. <td class="text-nowrap">
  1532. <a href="#" class="text-muted">
  1533. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1534. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1535. 6/10
  1536. </a>
  1537. </td>
  1538. <td class="text-nowrap">
  1539. <a href="#" class="text-muted">
  1540. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1541. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1542. 12</a>
  1543. </td>
  1544. <td>
  1545. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  1546. </td>
  1547. </tr>
  1548. <tr>
  1549. <td class="w-1 pe-0">
  1550. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" >
  1551. </td>
  1552. <td class="w-100">
  1553. <a href="#" class="text-reset">Define users and workflow</a>
  1554. </td>
  1555. <td class="text-nowrap text-muted">
  1556. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1557. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1558. November 23, 2021
  1559. </td>
  1560. <td class="text-nowrap">
  1561. <a href="#" class="text-muted">
  1562. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1563. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1564. 3/7
  1565. </a>
  1566. </td>
  1567. <td class="text-nowrap">
  1568. <a href="#" class="text-muted">
  1569. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1570. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1571. 5</a>
  1572. </td>
  1573. <td>
  1574. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1575. </td>
  1576. </tr>
  1577. <tr>
  1578. <td class="w-1 pe-0">
  1579. <input type="checkbox" class="form-check-input m-0 align-middle" aria-label="Select task" checked >
  1580. </td>
  1581. <td class="w-100">
  1582. <a href="#" class="text-reset">Check Pull Requests</a>
  1583. </td>
  1584. <td class="text-nowrap text-muted">
  1585. <!-- Download SVG icon from http://tabler-icons.io/i/calendar -->
  1586. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 7a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12z" /><path d="M16 3v4" /><path d="M8 3v4" /><path d="M4 11h16" /><path d="M11 15h1" /><path d="M12 15v3" /></svg>
  1587. January 14, 2021
  1588. </td>
  1589. <td class="text-nowrap">
  1590. <a href="#" class="text-muted">
  1591. <!-- Download SVG icon from http://tabler-icons.io/i/check -->
  1592. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
  1593. 2/9
  1594. </a>
  1595. </td>
  1596. <td class="text-nowrap">
  1597. <a href="#" class="text-muted">
  1598. <!-- Download SVG icon from http://tabler-icons.io/i/message -->
  1599. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M8 9h8" /><path d="M8 13h6" /><path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" /></svg>
  1600. 3</a>
  1601. </td>
  1602. <td>
  1603. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/001f.jpg)"></span>
  1604. </td>
  1605. </tr>
  1606. </table>
  1607. </div>
  1608. </div>
  1609. </div>
  1610. <div class="col-12">
  1611. <div class="card">
  1612. <div class="card-header">
  1613. <h3 class="card-title">Invoices</h3>
  1614. </div>
  1615. <div class="card-body border-bottom py-3">
  1616. <div class="d-flex">
  1617. <div class="text-muted">
  1618. Show
  1619. <div class="mx-2 d-inline-block">
  1620. <input type="text" class="form-control form-control-sm" value="8" size="3" aria-label="Invoices count">
  1621. </div>
  1622. entries
  1623. </div>
  1624. <div class="ms-auto text-muted">
  1625. Search:
  1626. <div class="ms-2 d-inline-block">
  1627. <input type="text" class="form-control form-control-sm" aria-label="Search invoice">
  1628. </div>
  1629. </div>
  1630. </div>
  1631. </div>
  1632. <div class="table-responsive">
  1633. <table class="table card-table table-vcenter text-nowrap datatable">
  1634. <thead>
  1635. <tr>
  1636. <th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th>
  1637. <th class="w-1">No. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-up -->
  1638. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-sm icon-thick" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 15l6 -6l6 6" /></svg>
  1639. </th>
  1640. <th>Invoice Subject</th>
  1641. <th>Client</th>
  1642. <th>VAT No.</th>
  1643. <th>Created</th>
  1644. <th>Status</th>
  1645. <th>Price</th>
  1646. <th></th>
  1647. </tr>
  1648. </thead>
  1649. <tbody>
  1650. <tr>
  1651. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1652. <td><span class="text-muted">001401</span></td>
  1653. <td><a href="invoice.html" class="text-reset" tabindex="-1">Design Works</a></td>
  1654. <td>
  1655. <span class="flag flag-country-us"></span>
  1656. Carlson Limited
  1657. </td>
  1658. <td>
  1659. 87956621
  1660. </td>
  1661. <td>
  1662. 15 Dec 2017
  1663. </td>
  1664. <td>
  1665. <span class="badge bg-success me-1"></span> Paid
  1666. </td>
  1667. <td>$887</td>
  1668. <td class="text-end">
  1669. <span class="dropdown">
  1670. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1671. <div class="dropdown-menu dropdown-menu-end">
  1672. <a class="dropdown-item" href="#">
  1673. Action
  1674. </a>
  1675. <a class="dropdown-item" href="#">
  1676. Another action
  1677. </a>
  1678. </div>
  1679. </span>
  1680. </td>
  1681. </tr>
  1682. <tr>
  1683. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1684. <td><span class="text-muted">001402</span></td>
  1685. <td><a href="invoice.html" class="text-reset" tabindex="-1">UX Wireframes</a></td>
  1686. <td>
  1687. <span class="flag flag-country-gb"></span>
  1688. Adobe
  1689. </td>
  1690. <td>
  1691. 87956421
  1692. </td>
  1693. <td>
  1694. 12 Apr 2017
  1695. </td>
  1696. <td>
  1697. <span class="badge bg-warning me-1"></span> Pending
  1698. </td>
  1699. <td>$1200</td>
  1700. <td class="text-end">
  1701. <span class="dropdown">
  1702. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1703. <div class="dropdown-menu dropdown-menu-end">
  1704. <a class="dropdown-item" href="#">
  1705. Action
  1706. </a>
  1707. <a class="dropdown-item" href="#">
  1708. Another action
  1709. </a>
  1710. </div>
  1711. </span>
  1712. </td>
  1713. </tr>
  1714. <tr>
  1715. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1716. <td><span class="text-muted">001403</span></td>
  1717. <td><a href="invoice.html" class="text-reset" tabindex="-1">New Dashboard</a></td>
  1718. <td>
  1719. <span class="flag flag-country-de"></span>
  1720. Bluewolf
  1721. </td>
  1722. <td>
  1723. 87952621
  1724. </td>
  1725. <td>
  1726. 23 Oct 2017
  1727. </td>
  1728. <td>
  1729. <span class="badge bg-warning me-1"></span> Pending
  1730. </td>
  1731. <td>$534</td>
  1732. <td class="text-end">
  1733. <span class="dropdown">
  1734. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1735. <div class="dropdown-menu dropdown-menu-end">
  1736. <a class="dropdown-item" href="#">
  1737. Action
  1738. </a>
  1739. <a class="dropdown-item" href="#">
  1740. Another action
  1741. </a>
  1742. </div>
  1743. </span>
  1744. </td>
  1745. </tr>
  1746. <tr>
  1747. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1748. <td><span class="text-muted">001404</span></td>
  1749. <td><a href="invoice.html" class="text-reset" tabindex="-1">Landing Page</a></td>
  1750. <td>
  1751. <span class="flag flag-country-br"></span>
  1752. Salesforce
  1753. </td>
  1754. <td>
  1755. 87953421
  1756. </td>
  1757. <td>
  1758. 2 Sep 2017
  1759. </td>
  1760. <td>
  1761. <span class="badge bg-secondary me-1"></span> Due in 2 Weeks
  1762. </td>
  1763. <td>$1500</td>
  1764. <td class="text-end">
  1765. <span class="dropdown">
  1766. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1767. <div class="dropdown-menu dropdown-menu-end">
  1768. <a class="dropdown-item" href="#">
  1769. Action
  1770. </a>
  1771. <a class="dropdown-item" href="#">
  1772. Another action
  1773. </a>
  1774. </div>
  1775. </span>
  1776. </td>
  1777. </tr>
  1778. <tr>
  1779. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1780. <td><span class="text-muted">001405</span></td>
  1781. <td><a href="invoice.html" class="text-reset" tabindex="-1">Marketing Templates</a></td>
  1782. <td>
  1783. <span class="flag flag-country-pl"></span>
  1784. Printic
  1785. </td>
  1786. <td>
  1787. 87956621
  1788. </td>
  1789. <td>
  1790. 29 Jan 2018
  1791. </td>
  1792. <td>
  1793. <span class="badge bg-danger me-1"></span> Paid Today
  1794. </td>
  1795. <td>$648</td>
  1796. <td class="text-end">
  1797. <span class="dropdown">
  1798. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1799. <div class="dropdown-menu dropdown-menu-end">
  1800. <a class="dropdown-item" href="#">
  1801. Action
  1802. </a>
  1803. <a class="dropdown-item" href="#">
  1804. Another action
  1805. </a>
  1806. </div>
  1807. </span>
  1808. </td>
  1809. </tr>
  1810. <tr>
  1811. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1812. <td><span class="text-muted">001406</span></td>
  1813. <td><a href="invoice.html" class="text-reset" tabindex="-1">Sales Presentation</a></td>
  1814. <td>
  1815. <span class="flag flag-country-br"></span>
  1816. Tabdaq
  1817. </td>
  1818. <td>
  1819. 87956621
  1820. </td>
  1821. <td>
  1822. 4 Feb 2018
  1823. </td>
  1824. <td>
  1825. <span class="badge bg-secondary me-1"></span> Due in 3 Weeks
  1826. </td>
  1827. <td>$300</td>
  1828. <td class="text-end">
  1829. <span class="dropdown">
  1830. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1831. <div class="dropdown-menu dropdown-menu-end">
  1832. <a class="dropdown-item" href="#">
  1833. Action
  1834. </a>
  1835. <a class="dropdown-item" href="#">
  1836. Another action
  1837. </a>
  1838. </div>
  1839. </span>
  1840. </td>
  1841. </tr>
  1842. <tr>
  1843. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1844. <td><span class="text-muted">001407</span></td>
  1845. <td><a href="invoice.html" class="text-reset" tabindex="-1">Logo & Print</a></td>
  1846. <td>
  1847. <span class="flag flag-country-us"></span>
  1848. Apple
  1849. </td>
  1850. <td>
  1851. 87956621
  1852. </td>
  1853. <td>
  1854. 22 Mar 2018
  1855. </td>
  1856. <td>
  1857. <span class="badge bg-success me-1"></span> Paid Today
  1858. </td>
  1859. <td>$2500</td>
  1860. <td class="text-end">
  1861. <span class="dropdown">
  1862. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1863. <div class="dropdown-menu dropdown-menu-end">
  1864. <a class="dropdown-item" href="#">
  1865. Action
  1866. </a>
  1867. <a class="dropdown-item" href="#">
  1868. Another action
  1869. </a>
  1870. </div>
  1871. </span>
  1872. </td>
  1873. </tr>
  1874. <tr>
  1875. <td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
  1876. <td><span class="text-muted">001408</span></td>
  1877. <td><a href="invoice.html" class="text-reset" tabindex="-1">Icons</a></td>
  1878. <td>
  1879. <span class="flag flag-country-pl"></span>
  1880. Tookapic
  1881. </td>
  1882. <td>
  1883. 87956621
  1884. </td>
  1885. <td>
  1886. 13 May 2018
  1887. </td>
  1888. <td>
  1889. <span class="badge bg-success me-1"></span> Paid Today
  1890. </td>
  1891. <td>$940</td>
  1892. <td class="text-end">
  1893. <span class="dropdown">
  1894. <button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
  1895. <div class="dropdown-menu dropdown-menu-end">
  1896. <a class="dropdown-item" href="#">
  1897. Action
  1898. </a>
  1899. <a class="dropdown-item" href="#">
  1900. Another action
  1901. </a>
  1902. </div>
  1903. </span>
  1904. </td>
  1905. </tr>
  1906. </tbody>
  1907. </table>
  1908. </div>
  1909. <div class="card-footer d-flex align-items-center">
  1910. <p class="m-0 text-muted">Showing <span>1</span> to <span>8</span> of <span>16</span> entries</p>
  1911. <ul class="pagination m-0 ms-auto">
  1912. <li class="page-item disabled">
  1913. <a class="page-link" href="#" tabindex="-1" aria-disabled="true">
  1914. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-left -->
  1915. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M15 6l-6 6l6 6" /></svg>
  1916. prev
  1917. </a>
  1918. </li>
  1919. <li class="page-item"><a class="page-link" href="#">1</a></li>
  1920. <li class="page-item active"><a class="page-link" href="#">2</a></li>
  1921. <li class="page-item"><a class="page-link" href="#">3</a></li>
  1922. <li class="page-item"><a class="page-link" href="#">4</a></li>
  1923. <li class="page-item"><a class="page-link" href="#">5</a></li>
  1924. <li class="page-item">
  1925. <a class="page-link" href="#">
  1926. next <!-- Download SVG icon from http://tabler-icons.io/i/chevron-right -->
  1927. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 6l6 6l-6 6" /></svg>
  1928. </a>
  1929. </li>
  1930. </ul>
  1931. </div>
  1932. </div>
  1933. </div>
  1934. </div>
  1935. </div>
  1936. </div>
  1937. <footer class="footer footer-transparent d-print-none">
  1938. <div class="container-xl">
  1939. <div class="row text-center align-items-center flex-row-reverse">
  1940. <div class="col-lg-auto ms-lg-auto">
  1941. <ul class="list-inline list-inline-dots mb-0">
  1942. <li class="list-inline-item"><a href="https://tabler.io/docs" target="_blank" class="link-secondary" rel="noopener">Documentation</a></li>
  1943. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  1944. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  1945. <li class="list-inline-item">
  1946. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  1947. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1948. <svg xmlns="http://www.w3.org/2000/svg" class="icon text-pink icon-filled icon-inline" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" /></svg>
  1949. Sponsor
  1950. </a>
  1951. </li>
  1952. </ul>
  1953. </div>
  1954. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  1955. <ul class="list-inline list-inline-dots mb-0">
  1956. <li class="list-inline-item">
  1957. Copyright &copy; 2023
  1958. <a href="." class="link-secondary">Tabler</a>.
  1959. All rights reserved.
  1960. </li>
  1961. <li class="list-inline-item">
  1962. <a href="./changelog.html" class="link-secondary" rel="noopener">
  1963. v1.0.0-beta19
  1964. </a>
  1965. </li>
  1966. </ul>
  1967. </div>
  1968. </div>
  1969. </div>
  1970. </footer>
  1971. </div>
  1972. </div>
  1973. <div class="modal modal-blur fade" id="modal-report" tabindex="-1" role="dialog" aria-hidden="true">
  1974. <div class="modal-dialog modal-lg" role="document">
  1975. <div class="modal-content">
  1976. <div class="modal-header">
  1977. <h5 class="modal-title">New report</h5>
  1978. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  1979. </div>
  1980. <div class="modal-body">
  1981. <div class="mb-3">
  1982. <label class="form-label">Name</label>
  1983. <input type="text" class="form-control" name="example-text-input" placeholder="Your report name">
  1984. </div>
  1985. <label class="form-label">Report type</label>
  1986. <div class="form-selectgroup-boxes row mb-3">
  1987. <div class="col-lg-6">
  1988. <label class="form-selectgroup-item">
  1989. <input type="radio" name="report-type" value="1" class="form-selectgroup-input" checked>
  1990. <span class="form-selectgroup-label d-flex align-items-center p-3">
  1991. <span class="me-3">
  1992. <span class="form-selectgroup-check"></span>
  1993. </span>
  1994. <span class="form-selectgroup-label-content">
  1995. <span class="form-selectgroup-title strong mb-1">Simple</span>
  1996. <span class="d-block text-muted">Provide only basic data needed for the report</span>
  1997. </span>
  1998. </span>
  1999. </label>
  2000. </div>
  2001. <div class="col-lg-6">
  2002. <label class="form-selectgroup-item">
  2003. <input type="radio" name="report-type" value="1" class="form-selectgroup-input">
  2004. <span class="form-selectgroup-label d-flex align-items-center p-3">
  2005. <span class="me-3">
  2006. <span class="form-selectgroup-check"></span>
  2007. </span>
  2008. <span class="form-selectgroup-label-content">
  2009. <span class="form-selectgroup-title strong mb-1">Advanced</span>
  2010. <span class="d-block text-muted">Insert charts and additional advanced analyses to be inserted in the report</span>
  2011. </span>
  2012. </span>
  2013. </label>
  2014. </div>
  2015. </div>
  2016. <div class="row">
  2017. <div class="col-lg-8">
  2018. <div class="mb-3">
  2019. <label class="form-label">Report url</label>
  2020. <div class="input-group input-group-flat">
  2021. <span class="input-group-text">
  2022. https://tabler.io/reports/
  2023. </span>
  2024. <input type="text" class="form-control ps-0" value="report-01" autocomplete="off">
  2025. </div>
  2026. </div>
  2027. </div>
  2028. <div class="col-lg-4">
  2029. <div class="mb-3">
  2030. <label class="form-label">Visibility</label>
  2031. <select class="form-select">
  2032. <option value="1" selected>Private</option>
  2033. <option value="2">Public</option>
  2034. <option value="3">Hidden</option>
  2035. </select>
  2036. </div>
  2037. </div>
  2038. </div>
  2039. </div>
  2040. <div class="modal-body">
  2041. <div class="row">
  2042. <div class="col-lg-6">
  2043. <div class="mb-3">
  2044. <label class="form-label">Client name</label>
  2045. <input type="text" class="form-control">
  2046. </div>
  2047. </div>
  2048. <div class="col-lg-6">
  2049. <div class="mb-3">
  2050. <label class="form-label">Reporting period</label>
  2051. <input type="date" class="form-control">
  2052. </div>
  2053. </div>
  2054. <div class="col-lg-12">
  2055. <div>
  2056. <label class="form-label">Additional information</label>
  2057. <textarea class="form-control" rows="3"></textarea>
  2058. </div>
  2059. </div>
  2060. </div>
  2061. </div>
  2062. <div class="modal-footer">
  2063. <a href="#" class="btn btn-link link-secondary" data-bs-dismiss="modal">
  2064. Cancel
  2065. </a>
  2066. <a href="#" class="btn btn-primary ms-auto" data-bs-dismiss="modal">
  2067. <!-- Download SVG icon from http://tabler-icons.io/i/plus -->
  2068. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 5l0 14" /><path d="M5 12l14 0" /></svg>
  2069. Create new report
  2070. </a>
  2071. </div>
  2072. </div>
  2073. </div>
  2074. </div>
  2075. <!-- Libs JS -->
  2076. <script src="./dist/libs/apexcharts/dist/apexcharts.min.js?1684106062" defer></script>
  2077. <script src="./dist/libs/jsvectormap/dist/js/jsvectormap.min.js?1684106062" defer></script>
  2078. <script src="./dist/libs/jsvectormap/dist/maps/world.js?1684106062" defer></script>
  2079. <script src="./dist/libs/jsvectormap/dist/maps/world-merc.js?1684106062" defer></script>
  2080. <!-- Tabler Core -->
  2081. <script src="./dist/js/tabler.min.js?1684106062" defer></script>
  2082. <script src="./dist/js/demo.min.js?1684106062" defer></script>
  2083. <script>
  2084. // @formatter:off
  2085. document.addEventListener("DOMContentLoaded", function () {
  2086. window.ApexCharts && (new ApexCharts(document.getElementById('chart-revenue-bg'), {
  2087. chart: {
  2088. type: "area",
  2089. fontFamily: 'inherit',
  2090. height: 40.0,
  2091. sparkline: {
  2092. enabled: true
  2093. },
  2094. animations: {
  2095. enabled: false
  2096. },
  2097. },
  2098. dataLabels: {
  2099. enabled: false,
  2100. },
  2101. fill: {
  2102. opacity: .16,
  2103. type: 'solid'
  2104. },
  2105. stroke: {
  2106. width: 2,
  2107. lineCap: "round",
  2108. curve: "smooth",
  2109. },
  2110. series: [{
  2111. name: "Profits",
  2112. 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]
  2113. }],
  2114. tooltip: {
  2115. theme: 'dark'
  2116. },
  2117. grid: {
  2118. strokeDashArray: 4,
  2119. },
  2120. xaxis: {
  2121. labels: {
  2122. padding: 0,
  2123. },
  2124. tooltip: {
  2125. enabled: false
  2126. },
  2127. axisBorder: {
  2128. show: false,
  2129. },
  2130. type: 'datetime',
  2131. },
  2132. yaxis: {
  2133. labels: {
  2134. padding: 4
  2135. },
  2136. },
  2137. labels: [
  2138. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2139. ],
  2140. colors: [tabler.getColor("primary")],
  2141. legend: {
  2142. show: false,
  2143. },
  2144. })).render();
  2145. });
  2146. // @formatter:on
  2147. </script>
  2148. <script>
  2149. // @formatter:off
  2150. document.addEventListener("DOMContentLoaded", function () {
  2151. window.ApexCharts && (new ApexCharts(document.getElementById('chart-new-clients'), {
  2152. chart: {
  2153. type: "line",
  2154. fontFamily: 'inherit',
  2155. height: 40.0,
  2156. sparkline: {
  2157. enabled: true
  2158. },
  2159. animations: {
  2160. enabled: false
  2161. },
  2162. },
  2163. fill: {
  2164. opacity: 1,
  2165. },
  2166. stroke: {
  2167. width: [2, 1],
  2168. dashArray: [0, 3],
  2169. lineCap: "round",
  2170. curve: "smooth",
  2171. },
  2172. series: [{
  2173. name: "May",
  2174. data: [37, 35, 44, 28, 36, 24, 65, 31, 37, 39, 62, 51, 35, 41, 35, 27, 93, 53, 61, 27, 54, 43, 4, 46, 39, 62, 51, 35, 41, 67]
  2175. },{
  2176. name: "April",
  2177. data: [93, 54, 51, 24, 35, 35, 31, 67, 19, 43, 28, 36, 62, 61, 27, 39, 35, 41, 27, 35, 51, 46, 62, 37, 44, 53, 41, 65, 39, 37]
  2178. }],
  2179. tooltip: {
  2180. theme: 'dark'
  2181. },
  2182. grid: {
  2183. strokeDashArray: 4,
  2184. },
  2185. xaxis: {
  2186. labels: {
  2187. padding: 0,
  2188. },
  2189. tooltip: {
  2190. enabled: false
  2191. },
  2192. type: 'datetime',
  2193. },
  2194. yaxis: {
  2195. labels: {
  2196. padding: 4
  2197. },
  2198. },
  2199. labels: [
  2200. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2201. ],
  2202. colors: [tabler.getColor("primary"), tabler.getColor("gray-600")],
  2203. legend: {
  2204. show: false,
  2205. },
  2206. })).render();
  2207. });
  2208. // @formatter:on
  2209. </script>
  2210. <script>
  2211. // @formatter:off
  2212. document.addEventListener("DOMContentLoaded", function () {
  2213. window.ApexCharts && (new ApexCharts(document.getElementById('chart-active-users'), {
  2214. chart: {
  2215. type: "bar",
  2216. fontFamily: 'inherit',
  2217. height: 40.0,
  2218. sparkline: {
  2219. enabled: true
  2220. },
  2221. animations: {
  2222. enabled: false
  2223. },
  2224. },
  2225. plotOptions: {
  2226. bar: {
  2227. columnWidth: '50%',
  2228. }
  2229. },
  2230. dataLabels: {
  2231. enabled: false,
  2232. },
  2233. fill: {
  2234. opacity: 1,
  2235. },
  2236. series: [{
  2237. name: "Profits",
  2238. 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]
  2239. }],
  2240. tooltip: {
  2241. theme: 'dark'
  2242. },
  2243. grid: {
  2244. strokeDashArray: 4,
  2245. },
  2246. xaxis: {
  2247. labels: {
  2248. padding: 0,
  2249. },
  2250. tooltip: {
  2251. enabled: false
  2252. },
  2253. axisBorder: {
  2254. show: false,
  2255. },
  2256. type: 'datetime',
  2257. },
  2258. yaxis: {
  2259. labels: {
  2260. padding: 4
  2261. },
  2262. },
  2263. labels: [
  2264. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2265. ],
  2266. colors: [tabler.getColor("primary")],
  2267. legend: {
  2268. show: false,
  2269. },
  2270. })).render();
  2271. });
  2272. // @formatter:on
  2273. </script>
  2274. <script>
  2275. // @formatter:off
  2276. document.addEventListener("DOMContentLoaded", function () {
  2277. window.ApexCharts && (new ApexCharts(document.getElementById('chart-mentions'), {
  2278. chart: {
  2279. type: "bar",
  2280. fontFamily: 'inherit',
  2281. height: 240,
  2282. parentHeightOffset: 0,
  2283. toolbar: {
  2284. show: false,
  2285. },
  2286. animations: {
  2287. enabled: false
  2288. },
  2289. stacked: true,
  2290. },
  2291. plotOptions: {
  2292. bar: {
  2293. columnWidth: '50%',
  2294. }
  2295. },
  2296. dataLabels: {
  2297. enabled: false,
  2298. },
  2299. fill: {
  2300. opacity: 1,
  2301. },
  2302. series: [{
  2303. name: "Web",
  2304. data: [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 2, 12, 5, 8, 22, 6, 8, 6, 4, 1, 8, 24, 29, 51, 40, 47, 23, 26, 50, 26, 41, 22, 46, 47, 81, 46, 6]
  2305. },{
  2306. name: "Social",
  2307. data: [2, 5, 4, 3, 3, 1, 4, 7, 5, 1, 2, 5, 3, 2, 6, 7, 7, 1, 5, 5, 2, 12, 4, 6, 18, 3, 5, 2, 13, 15, 20, 47, 18, 15, 11, 10, 0]
  2308. },{
  2309. name: "Other",
  2310. data: [2, 9, 1, 7, 8, 3, 6, 5, 5, 4, 6, 4, 1, 9, 3, 6, 7, 5, 2, 8, 4, 9, 1, 2, 6, 7, 5, 1, 8, 3, 2, 3, 4, 9, 7, 1, 6]
  2311. }],
  2312. tooltip: {
  2313. theme: 'dark'
  2314. },
  2315. grid: {
  2316. padding: {
  2317. top: -20,
  2318. right: 0,
  2319. left: -4,
  2320. bottom: -4
  2321. },
  2322. strokeDashArray: 4,
  2323. xaxis: {
  2324. lines: {
  2325. show: true
  2326. }
  2327. },
  2328. },
  2329. xaxis: {
  2330. labels: {
  2331. padding: 0,
  2332. },
  2333. tooltip: {
  2334. enabled: false
  2335. },
  2336. axisBorder: {
  2337. show: false,
  2338. },
  2339. type: 'datetime',
  2340. },
  2341. yaxis: {
  2342. labels: {
  2343. padding: 4
  2344. },
  2345. },
  2346. labels: [
  2347. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19', '2020-07-20', '2020-07-21', '2020-07-22', '2020-07-23', '2020-07-24', '2020-07-25', '2020-07-26'
  2348. ],
  2349. colors: [tabler.getColor("primary"), tabler.getColor("primary", 0.8), tabler.getColor("green", 0.8)],
  2350. legend: {
  2351. show: false,
  2352. },
  2353. })).render();
  2354. });
  2355. // @formatter:on
  2356. </script>
  2357. <script>
  2358. // @formatter:on
  2359. document.addEventListener("DOMContentLoaded", function() {
  2360. const map = new jsVectorMap({
  2361. selector: '#map-world',
  2362. map: 'world',
  2363. backgroundColor: 'transparent',
  2364. regionStyle: {
  2365. initial: {
  2366. fill: tabler.getColor('body-bg'),
  2367. stroke: tabler.getColor('border-color'),
  2368. strokeWidth: 2,
  2369. }
  2370. },
  2371. zoomOnScroll: false,
  2372. zoomButtons: false,
  2373. // -------- Series --------
  2374. visualizeData: {
  2375. scale: [tabler.getColor('bg-surface'), tabler.getColor('primary')],
  2376. values: { "AF": 16, "AL": 11, "DZ": 158, "AO": 85, "AG": 1, "AR": 351, "AM": 8, "AU": 1219, "AT": 366, "AZ": 52, "BS": 7, "BH": 21, "BD": 105, "BB": 3, "BY": 52, "BE": 461, "BZ": 1, "BJ": 6, "BT": 1, "BO": 19, "BA": 16, "BW": 12, "BR": 2023, "BN": 11, "BG": 44, "BF": 8, "BI": 1, "KH": 11, "CM": 21, "CA": 1563, "CV": 1, "CF": 2, "TD": 7, "CL": 199, "CN": 5745, "CO": 283, "KM": 0, "CD": 12, "CG": 11, "CR": 35, "CI": 22, "HR": 59, "CY": 22, "CZ": 195, "DK": 304, "DJ": 1, "DM": 0, "DO": 50, "EC": 61, "EG": 216, "SV": 21, "GQ": 14, "ER": 2, "EE": 19, "ET": 30, "FJ": 3, "FI": 231, "FR": 2555, "GA": 12, "GM": 1, "GE": 11, "DE": 3305, "GH": 18, "GR": 305, "GD": 0, "GT": 40, "GN": 4, "GW": 0, "GY": 2, "HT": 6, "HN": 15, "HK": 226, "HU": 132, "IS": 12, "IN": 1430, "ID": 695, "IR": 337, "IQ": 84, "IE": 204, "IL": 201, "IT": 2036, "JM": 13, "JP": 5390, "JO": 27, "KZ": 129, "KE": 32, "KI": 0, "KR": 986, "KW": 117, "KG": 4, "LA": 6, "LV": 23, "LB": 39, "LS": 1, "LR": 0, "LY": 77, "LT": 35, "LU": 52, "MK": 9, "MG": 8, "MW": 5, "MY": 218, "MV": 1, "ML": 9, "MT": 7, "MR": 3, "MU": 9, "MX": 1004, "MD": 5, "MN": 5, "ME": 3, "MA": 91, "MZ": 10, "MM": 35, "NA": 11, "NP": 15, "NL": 770, "NZ": 138, "NI": 6, "NE": 5, "NG": 206, "NO": 413, "OM": 53, "PK": 174, "PA": 27, "PG": 8, "PY": 17, "PE": 153, "PH": 189, "PL": 438, "PT": 223, "QA": 126, "RO": 158, "RU": 1476, "RW": 5, "WS": 0, "ST": 0, "SA": 434, "SN": 12, "RS": 38, "SC": 0, "SL": 1, "SG": 217, "SK": 86, "SI": 46, "SB": 0, "ZA": 354, "ES": 1374, "LK": 48, "KN": 0, "LC": 1, "VC": 0, "SD": 65, "SR": 3, "SZ": 3, "SE": 444, "CH": 522, "SY": 59, "TW": 426, "TJ": 5, "TZ": 22, "TH": 312, "TL": 0, "TG": 3, "TO": 0, "TT": 21, "TN": 43, "TR": 729, "TM": 0, "UG": 17, "UA": 136, "AE": 239, "GB": 2258, "US": 4624, "UY": 40, "UZ": 37, "VU": 0, "VE": 285, "VN": 101, "YE": 30, "ZM": 15, "ZW": 5 },
  2377. },
  2378. });
  2379. window.addEventListener("resize", () => {
  2380. map.updateSize();
  2381. });
  2382. });
  2383. // @formatter:off
  2384. </script>
  2385. <script>
  2386. // @formatter:off
  2387. document.addEventListener("DOMContentLoaded", function () {
  2388. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-activity'), {
  2389. chart: {
  2390. type: "radialBar",
  2391. fontFamily: 'inherit',
  2392. height: 40,
  2393. width: 40,
  2394. animations: {
  2395. enabled: false
  2396. },
  2397. sparkline: {
  2398. enabled: true
  2399. },
  2400. },
  2401. tooltip: {
  2402. enabled: false,
  2403. },
  2404. plotOptions: {
  2405. radialBar: {
  2406. hollow: {
  2407. margin: 0,
  2408. size: '75%'
  2409. },
  2410. track: {
  2411. margin: 0
  2412. },
  2413. dataLabels: {
  2414. show: false
  2415. }
  2416. }
  2417. },
  2418. colors: [tabler.getColor("blue")],
  2419. series: [35],
  2420. })).render();
  2421. });
  2422. // @formatter:on
  2423. </script>
  2424. <script>
  2425. // @formatter:off
  2426. document.addEventListener("DOMContentLoaded", function () {
  2427. window.ApexCharts && (new ApexCharts(document.getElementById('chart-development-activity'), {
  2428. chart: {
  2429. type: "area",
  2430. fontFamily: 'inherit',
  2431. height: 192,
  2432. sparkline: {
  2433. enabled: true
  2434. },
  2435. animations: {
  2436. enabled: false
  2437. },
  2438. },
  2439. dataLabels: {
  2440. enabled: false,
  2441. },
  2442. fill: {
  2443. opacity: .16,
  2444. type: 'solid'
  2445. },
  2446. stroke: {
  2447. width: 2,
  2448. lineCap: "round",
  2449. curve: "smooth",
  2450. },
  2451. series: [{
  2452. name: "Purchases",
  2453. data: [3, 5, 4, 6, 7, 5, 6, 8, 24, 7, 12, 5, 6, 3, 8, 4, 14, 30, 17, 19, 15, 14, 25, 32, 40, 55, 60, 48, 52, 70]
  2454. }],
  2455. tooltip: {
  2456. theme: 'dark'
  2457. },
  2458. grid: {
  2459. strokeDashArray: 4,
  2460. },
  2461. xaxis: {
  2462. labels: {
  2463. padding: 0,
  2464. },
  2465. tooltip: {
  2466. enabled: false
  2467. },
  2468. axisBorder: {
  2469. show: false,
  2470. },
  2471. type: 'datetime',
  2472. },
  2473. yaxis: {
  2474. labels: {
  2475. padding: 4
  2476. },
  2477. },
  2478. labels: [
  2479. '2020-06-20', '2020-06-21', '2020-06-22', '2020-06-23', '2020-06-24', '2020-06-25', '2020-06-26', '2020-06-27', '2020-06-28', '2020-06-29', '2020-06-30', '2020-07-01', '2020-07-02', '2020-07-03', '2020-07-04', '2020-07-05', '2020-07-06', '2020-07-07', '2020-07-08', '2020-07-09', '2020-07-10', '2020-07-11', '2020-07-12', '2020-07-13', '2020-07-14', '2020-07-15', '2020-07-16', '2020-07-17', '2020-07-18', '2020-07-19'
  2480. ],
  2481. colors: [tabler.getColor("primary")],
  2482. legend: {
  2483. show: false,
  2484. },
  2485. point: {
  2486. show: false
  2487. },
  2488. })).render();
  2489. });
  2490. // @formatter:on
  2491. </script>
  2492. <script>
  2493. // @formatter:off
  2494. document.addEventListener("DOMContentLoaded", function () {
  2495. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-1'), {
  2496. chart: {
  2497. type: "line",
  2498. fontFamily: 'inherit',
  2499. height: 24,
  2500. animations: {
  2501. enabled: false
  2502. },
  2503. sparkline: {
  2504. enabled: true
  2505. },
  2506. },
  2507. tooltip: {
  2508. enabled: false,
  2509. },
  2510. stroke: {
  2511. width: 2,
  2512. lineCap: "round",
  2513. },
  2514. series: [{
  2515. color: tabler.getColor("primary"),
  2516. data: [17, 24, 20, 10, 5, 1, 4, 18, 13]
  2517. }],
  2518. })).render();
  2519. });
  2520. // @formatter:on
  2521. </script>
  2522. <script>
  2523. // @formatter:off
  2524. document.addEventListener("DOMContentLoaded", function () {
  2525. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-2'), {
  2526. chart: {
  2527. type: "line",
  2528. fontFamily: 'inherit',
  2529. height: 24,
  2530. animations: {
  2531. enabled: false
  2532. },
  2533. sparkline: {
  2534. enabled: true
  2535. },
  2536. },
  2537. tooltip: {
  2538. enabled: false,
  2539. },
  2540. stroke: {
  2541. width: 2,
  2542. lineCap: "round",
  2543. },
  2544. series: [{
  2545. color: tabler.getColor("primary"),
  2546. data: [13, 11, 19, 22, 12, 7, 14, 3, 21]
  2547. }],
  2548. })).render();
  2549. });
  2550. // @formatter:on
  2551. </script>
  2552. <script>
  2553. // @formatter:off
  2554. document.addEventListener("DOMContentLoaded", function () {
  2555. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-3'), {
  2556. chart: {
  2557. type: "line",
  2558. fontFamily: 'inherit',
  2559. height: 24,
  2560. animations: {
  2561. enabled: false
  2562. },
  2563. sparkline: {
  2564. enabled: true
  2565. },
  2566. },
  2567. tooltip: {
  2568. enabled: false,
  2569. },
  2570. stroke: {
  2571. width: 2,
  2572. lineCap: "round",
  2573. },
  2574. series: [{
  2575. color: tabler.getColor("primary"),
  2576. data: [10, 13, 10, 4, 17, 3, 23, 22, 19]
  2577. }],
  2578. })).render();
  2579. });
  2580. // @formatter:on
  2581. </script>
  2582. <script>
  2583. // @formatter:off
  2584. document.addEventListener("DOMContentLoaded", function () {
  2585. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-4'), {
  2586. chart: {
  2587. type: "line",
  2588. fontFamily: 'inherit',
  2589. height: 24,
  2590. animations: {
  2591. enabled: false
  2592. },
  2593. sparkline: {
  2594. enabled: true
  2595. },
  2596. },
  2597. tooltip: {
  2598. enabled: false,
  2599. },
  2600. stroke: {
  2601. width: 2,
  2602. lineCap: "round",
  2603. },
  2604. series: [{
  2605. color: tabler.getColor("primary"),
  2606. data: [6, 15, 13, 13, 5, 7, 17, 20, 19]
  2607. }],
  2608. })).render();
  2609. });
  2610. // @formatter:on
  2611. </script>
  2612. <script>
  2613. // @formatter:off
  2614. document.addEventListener("DOMContentLoaded", function () {
  2615. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-5'), {
  2616. chart: {
  2617. type: "line",
  2618. fontFamily: 'inherit',
  2619. height: 24,
  2620. animations: {
  2621. enabled: false
  2622. },
  2623. sparkline: {
  2624. enabled: true
  2625. },
  2626. },
  2627. tooltip: {
  2628. enabled: false,
  2629. },
  2630. stroke: {
  2631. width: 2,
  2632. lineCap: "round",
  2633. },
  2634. series: [{
  2635. color: tabler.getColor("primary"),
  2636. data: [2, 11, 15, 14, 21, 20, 8, 23, 18, 14]
  2637. }],
  2638. })).render();
  2639. });
  2640. // @formatter:on
  2641. </script>
  2642. <script>
  2643. // @formatter:off
  2644. document.addEventListener("DOMContentLoaded", function () {
  2645. window.ApexCharts && (new ApexCharts(document.getElementById('sparkline-bounce-rate-6'), {
  2646. chart: {
  2647. type: "line",
  2648. fontFamily: 'inherit',
  2649. height: 24,
  2650. animations: {
  2651. enabled: false
  2652. },
  2653. sparkline: {
  2654. enabled: true
  2655. },
  2656. },
  2657. tooltip: {
  2658. enabled: false,
  2659. },
  2660. stroke: {
  2661. width: 2,
  2662. lineCap: "round",
  2663. },
  2664. series: [{
  2665. color: tabler.getColor("primary"),
  2666. data: [22, 12, 7, 14, 3, 21, 8, 23, 18, 14]
  2667. }],
  2668. })).render();
  2669. });
  2670. // @formatter:on
  2671. </script>
  2672. </body>
  2673. </html>