layout-navbar-sticky.html 145 KB

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