layout-navbar-sticky.html 144 KB

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