navigation.html 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta19
  5. * @link https://tabler.io
  6. * Copyright 2018-2023 The Tabler Authors
  7. * Copyright 2018-2023 codecalm.net Paweł Kuna
  8. * Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
  9. -->
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8"/>
  13. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
  14. <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
  15. <title>Navigation - Tabler - Premium and Open Source dashboard template with responsive and high quality UI.</title>
  16. <script defer data-api="/stats/api/event" data-domain="preview.tabler.io" src="/stats/js/script.js"></script>
  17. <meta name="msapplication-TileColor" content=""/>
  18. <meta name="theme-color" content=""/>
  19. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
  20. <meta name="apple-mobile-web-app-capable" content="yes"/>
  21. <meta name="mobile-web-app-capable" content="yes"/>
  22. <meta name="HandheldFriendly" content="True"/>
  23. <meta name="MobileOptimized" content="320"/>
  24. <link rel="icon" href="./favicon.ico" type="image/x-icon"/>
  25. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/>
  26. <meta name="description" content="Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!"/>
  27. <meta name="canonical" content="https://preview.tabler.io/navigation.html">
  28. <meta name="twitter:image:src" content="https://preview.tabler.io/static/og.png">
  29. <meta name="twitter:site" content="@tabler_ui">
  30. <meta name="twitter:card" content="summary">
  31. <meta name="twitter:title" content="Tabler: Premium and Open Source dashboard template with responsive and high quality UI.">
  32. <meta name="twitter:description" content="Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!">
  33. <meta property="og:image" content="https://preview.tabler.io/static/og.png">
  34. <meta property="og:image:width" content="1280">
  35. <meta property="og:image:height" content="640">
  36. <meta property="og:site_name" content="Tabler">
  37. <meta property="og:type" content="object">
  38. <meta property="og:title" content="Tabler: Premium and Open Source dashboard template with responsive and high quality UI.">
  39. <meta property="og:url" content="https://preview.tabler.io/static/og.png">
  40. <meta property="og:description" content="Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!">
  41. <!-- CSS files -->
  42. <link href="./dist/css/tabler.min.css?1685973381" rel="stylesheet"/>
  43. <link href="./dist/css/tabler-flags.min.css?1685973381" rel="stylesheet"/>
  44. <link href="./dist/css/tabler-payments.min.css?1685973381" rel="stylesheet"/>
  45. <link href="./dist/css/tabler-vendors.min.css?1685973381" rel="stylesheet"/>
  46. <link href="./dist/css/demo.min.css?1685973381" rel="stylesheet"/>
  47. <style>
  48. @import url('https://rsms.me/inter/inter.css');
  49. :root {
  50. --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  51. }
  52. body {
  53. font-feature-settings: "cv03", "cv04", "cv11";
  54. }
  55. </style>
  56. </head>
  57. <body >
  58. <script src="./dist/js/demo-theme.min.js?1685973381"></script>
  59. <div class="page">
  60. <!-- Navbar -->
  61. <header class="navbar navbar-expand-md d-print-none" >
  62. <div class="container-xl">
  63. <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">
  64. <span class="navbar-toggler-icon"></span>
  65. </button>
  66. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  67. <a href=".">
  68. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  69. </a>
  70. </h1>
  71. <div class="navbar-nav flex-row order-md-last">
  72. <div class="nav-item d-none d-md-flex me-3">
  73. <div class="btn-list">
  74. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  75. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  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="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>
  77. Source code
  78. </a>
  79. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  80. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  81. <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>
  82. Sponsor
  83. </a>
  84. </div>
  85. </div>
  86. <div class="d-none d-md-flex">
  87. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  88. data-bs-placement="bottom">
  89. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  90. <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>
  91. </a>
  92. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  93. data-bs-placement="bottom">
  94. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  95. <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>
  96. </a>
  97. <div class="nav-item dropdown d-none d-md-flex me-3">
  98. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  99. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  100. <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>
  101. <span class="badge bg-red"></span>
  102. </a>
  103. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  104. <div class="card">
  105. <div class="card-header">
  106. <h3 class="card-title">Last updates</h3>
  107. </div>
  108. <div class="list-group list-group-flush list-group-hoverable">
  109. <div class="list-group-item">
  110. <div class="row align-items-center">
  111. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  112. <div class="col text-truncate">
  113. <a href="#" class="text-body d-block">Example 1</a>
  114. <div class="d-block text-secondary text-truncate mt-n1">
  115. Change deprecated html tags to text decoration classes (#29604)
  116. </div>
  117. </div>
  118. <div class="col-auto">
  119. <a href="#" class="list-group-item-actions">
  120. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  121. <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>
  122. </a>
  123. </div>
  124. </div>
  125. </div>
  126. <div class="list-group-item">
  127. <div class="row align-items-center">
  128. <div class="col-auto"><span class="status-dot d-block"></span></div>
  129. <div class="col text-truncate">
  130. <a href="#" class="text-body d-block">Example 2</a>
  131. <div class="d-block text-secondary text-truncate mt-n1">
  132. justify-content:between ⇒ justify-content:space-between (#29734)
  133. </div>
  134. </div>
  135. <div class="col-auto">
  136. <a href="#" class="list-group-item-actions show">
  137. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  138. <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>
  139. </a>
  140. </div>
  141. </div>
  142. </div>
  143. <div class="list-group-item">
  144. <div class="row align-items-center">
  145. <div class="col-auto"><span class="status-dot d-block"></span></div>
  146. <div class="col text-truncate">
  147. <a href="#" class="text-body d-block">Example 3</a>
  148. <div class="d-block text-secondary text-truncate mt-n1">
  149. Update change-version.js (#29736)
  150. </div>
  151. </div>
  152. <div class="col-auto">
  153. <a href="#" class="list-group-item-actions">
  154. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  155. <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>
  156. </a>
  157. </div>
  158. </div>
  159. </div>
  160. <div class="list-group-item">
  161. <div class="row align-items-center">
  162. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  163. <div class="col text-truncate">
  164. <a href="#" class="text-body d-block">Example 4</a>
  165. <div class="d-block text-secondary text-truncate mt-n1">
  166. Regenerate package-lock.json (#29730)
  167. </div>
  168. </div>
  169. <div class="col-auto">
  170. <a href="#" class="list-group-item-actions">
  171. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  172. <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>
  173. </a>
  174. </div>
  175. </div>
  176. </div>
  177. </div>
  178. </div>
  179. </div>
  180. </div>
  181. </div>
  182. <div class="nav-item dropdown">
  183. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  184. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000m.jpg)"></span>
  185. <div class="d-none d-xl-block ps-2">
  186. <div>Paweł Kuna</div>
  187. <div class="mt-1 small text-secondary">UI Designer</div>
  188. </div>
  189. </a>
  190. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  191. <a href="#" class="dropdown-item">Status</a>
  192. <a href="./profile.html" class="dropdown-item">Profile</a>
  193. <a href="#" class="dropdown-item">Feedback</a>
  194. <div class="dropdown-divider"></div>
  195. <a href="./settings.html" class="dropdown-item">Settings</a>
  196. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  197. </div>
  198. </div>
  199. </div>
  200. </div>
  201. </header>
  202. <header class="navbar-expand-md">
  203. <div class="collapse navbar-collapse" id="navbar-menu">
  204. <div class="navbar">
  205. <div class="container-xl">
  206. <ul class="navbar-nav">
  207. <li class="nav-item">
  208. <a class="nav-link" href="./" >
  209. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/home -->
  210. <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>
  211. </span>
  212. <span class="nav-link-title">
  213. Home
  214. </span>
  215. </a>
  216. </li>
  217. <li class="nav-item active dropdown">
  218. <a class="nav-link dropdown-toggle" href="#navbar-base" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  219. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/package -->
  220. <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>
  221. </span>
  222. <span class="nav-link-title">
  223. Interface
  224. </span>
  225. </a>
  226. <div class="dropdown-menu">
  227. <div class="dropdown-menu-columns">
  228. <div class="dropdown-menu-column">
  229. <a class="dropdown-item" href="./alerts.html">
  230. Alerts
  231. </a>
  232. <a class="dropdown-item" href="./accordion.html">
  233. Accordion
  234. </a>
  235. <div class="dropend">
  236. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  237. Authentication
  238. </a>
  239. <div class="dropdown-menu">
  240. <a href="./sign-in.html" class="dropdown-item">
  241. Sign in
  242. </a>
  243. <a href="./sign-in-link.html" class="dropdown-item">
  244. Sign in link
  245. </a>
  246. <a href="./sign-in-illustration.html" class="dropdown-item">
  247. Sign in with illustration
  248. </a>
  249. <a href="./sign-in-cover.html" class="dropdown-item">
  250. Sign in with cover
  251. </a>
  252. <a href="./sign-up.html" class="dropdown-item">
  253. Sign up
  254. </a>
  255. <a href="./forgot-password.html" class="dropdown-item">
  256. Forgot password
  257. </a>
  258. <a href="./terms-of-service.html" class="dropdown-item">
  259. Terms of service
  260. </a>
  261. <a href="./auth-lock.html" class="dropdown-item">
  262. Lock screen
  263. </a>
  264. <a href="./2-step-verification.html" class="dropdown-item">
  265. 2 step verification
  266. </a>
  267. <a href="./2-step-verification-code.html" class="dropdown-item">
  268. 2 step verification code
  269. </a>
  270. </div>
  271. </div>
  272. <a class="dropdown-item" href="./blank.html">
  273. Blank page
  274. </a>
  275. <a class="dropdown-item" href="./badges.html">
  276. Badges
  277. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  278. </a>
  279. <a class="dropdown-item" href="./buttons.html">
  280. Buttons
  281. </a>
  282. <div class="dropend">
  283. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  284. Cards
  285. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  286. </a>
  287. <div class="dropdown-menu">
  288. <a href="./cards.html" class="dropdown-item">
  289. Sample cards
  290. </a>
  291. <a href="./card-actions.html" class="dropdown-item">
  292. Card actions
  293. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  294. </a>
  295. <a href="./cards-masonry.html" class="dropdown-item">
  296. Cards Masonry
  297. </a>
  298. </div>
  299. </div>
  300. <a class="dropdown-item" href="./carousel.html">
  301. Carousel
  302. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  303. </a>
  304. <a class="dropdown-item" href="./charts.html">
  305. Charts
  306. </a>
  307. <a class="dropdown-item" href="./colors.html">
  308. Colors
  309. </a>
  310. <a class="dropdown-item" href="./colorpicker.html">
  311. Color picker
  312. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  313. </a>
  314. <a class="dropdown-item" href="./datagrid.html">
  315. Data grid
  316. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  317. </a>
  318. <a class="dropdown-item" href="./datatables.html">
  319. Datatables
  320. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  321. </a>
  322. <a class="dropdown-item" href="./dropdowns.html">
  323. Dropdowns
  324. </a>
  325. <a class="dropdown-item" href="./dropzone.html">
  326. Dropzone
  327. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  328. </a>
  329. <div class="dropend">
  330. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  331. Error pages
  332. </a>
  333. <div class="dropdown-menu">
  334. <a href="./error-404.html" class="dropdown-item">
  335. 404 page
  336. </a>
  337. <a href="./error-500.html" class="dropdown-item">
  338. 500 page
  339. </a>
  340. <a href="./error-maintenance.html" class="dropdown-item">
  341. Maintenance page
  342. </a>
  343. </div>
  344. </div>
  345. <a class="dropdown-item" href="./flags.html">
  346. Flags
  347. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  348. </a>
  349. <a class="dropdown-item" href="./inline-player.html">
  350. Inline player
  351. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  352. </a>
  353. </div>
  354. <div class="dropdown-menu-column">
  355. <a class="dropdown-item" href="./lightbox.html">
  356. Lightbox
  357. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  358. </a>
  359. <a class="dropdown-item" href="./lists.html">
  360. Lists
  361. </a>
  362. <a class="dropdown-item" href="./modals.html">
  363. Modal
  364. </a>
  365. <a class="dropdown-item" href="./maps.html">
  366. Map
  367. </a>
  368. <a class="dropdown-item" href="./map-fullsize.html">
  369. Map fullsize
  370. </a>
  371. <a class="dropdown-item" href="./maps-vector.html">
  372. Map vector
  373. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  374. </a>
  375. <a class="dropdown-item" href="./markdown.html">
  376. Markdown
  377. </a>
  378. <a class="dropdown-item active" href="./navigation.html">
  379. Navigation
  380. </a>
  381. <a class="dropdown-item" href="./offcanvas.html">
  382. Offcanvas
  383. </a>
  384. <a class="dropdown-item" href="./pagination.html">
  385. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  386. Pagination
  387. </a>
  388. <a class="dropdown-item" href="./placeholder.html">
  389. Placeholder
  390. </a>
  391. <a class="dropdown-item" href="./steps.html">
  392. Steps
  393. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  394. </a>
  395. <a class="dropdown-item" href="./stars-rating.html">
  396. Stars rating
  397. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  398. </a>
  399. <a class="dropdown-item" href="./tabs.html">
  400. Tabs
  401. </a>
  402. <a class="dropdown-item" href="./tables.html">
  403. Tables
  404. </a>
  405. <a class="dropdown-item" href="./typography.html">
  406. Typography
  407. </a>
  408. <a class="dropdown-item" href="./tinymce.html">
  409. TinyMCE
  410. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  411. </a>
  412. </div>
  413. </div>
  414. </div>
  415. </li>
  416. <li class="nav-item">
  417. <a class="nav-link" href="./form-elements.html" >
  418. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  419. <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>
  420. </span>
  421. <span class="nav-link-title">
  422. Form elements
  423. </span>
  424. </a>
  425. </li>
  426. <li class="nav-item dropdown">
  427. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  428. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  429. <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>
  430. </span>
  431. <span class="nav-link-title">
  432. Extra
  433. </span>
  434. </a>
  435. <div class="dropdown-menu">
  436. <div class="dropdown-menu-columns">
  437. <div class="dropdown-menu-column">
  438. <a class="dropdown-item" href="./empty.html">
  439. Empty page
  440. </a>
  441. <a class="dropdown-item" href="./cookie-banner.html">
  442. Cookie banner
  443. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  444. </a>
  445. <a class="dropdown-item" href="./activity.html">
  446. Activity
  447. </a>
  448. <a class="dropdown-item" href="./gallery.html">
  449. Gallery
  450. </a>
  451. <a class="dropdown-item" href="./invoice.html">
  452. Invoice
  453. </a>
  454. <a class="dropdown-item" href="./search-results.html">
  455. Search results
  456. </a>
  457. <a class="dropdown-item" href="./pricing.html">
  458. Pricing cards
  459. </a>
  460. <a class="dropdown-item" href="./pricing-table.html">
  461. Pricing table
  462. </a>
  463. <a class="dropdown-item" href="./faq.html">
  464. FAQ
  465. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  466. </a>
  467. <a class="dropdown-item" href="./users.html">
  468. Users
  469. </a>
  470. <a class="dropdown-item" href="./license.html">
  471. License
  472. </a>
  473. </div>
  474. <div class="dropdown-menu-column">
  475. <a class="dropdown-item" href="./logs.html">
  476. Logs
  477. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  478. </a>
  479. <a class="dropdown-item" href="./music.html">
  480. Music
  481. </a>
  482. <a class="dropdown-item" href="./photogrid.html">
  483. Photogrid
  484. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  485. </a>
  486. <a class="dropdown-item" href="./tasks.html">
  487. Tasks
  488. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  489. </a>
  490. <a class="dropdown-item" href="./uptime.html">
  491. Uptime monitor
  492. </a>
  493. <a class="dropdown-item" href="./widgets.html">
  494. Widgets
  495. </a>
  496. <a class="dropdown-item" href="./wizard.html">
  497. Wizard
  498. </a>
  499. <a class="dropdown-item" href="./settings.html">
  500. Settings
  501. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  502. </a>
  503. <a class="dropdown-item" href="./trial-ended.html">
  504. Trial ended
  505. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  506. </a>
  507. <a class="dropdown-item" href="./job-listing.html">
  508. Job listing
  509. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  510. </a>
  511. <a class="dropdown-item" href="./page-loader.html">
  512. Page loader
  513. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  514. </a>
  515. </div>
  516. </div>
  517. </div>
  518. </li>
  519. <li class="nav-item dropdown">
  520. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  521. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  522. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="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>
  523. </span>
  524. <span class="nav-link-title">
  525. Layout
  526. </span>
  527. </a>
  528. <div class="dropdown-menu">
  529. <div class="dropdown-menu-columns">
  530. <div class="dropdown-menu-column">
  531. <a class="dropdown-item" href="./layout-horizontal.html">
  532. Horizontal
  533. </a>
  534. <a class="dropdown-item" href="./layout-boxed.html">
  535. Boxed
  536. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  537. </a>
  538. <a class="dropdown-item" href="./layout-vertical.html">
  539. Vertical
  540. </a>
  541. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  542. Vertical transparent
  543. </a>
  544. <a class="dropdown-item" href="./layout-vertical-right.html">
  545. Right vertical
  546. </a>
  547. <a class="dropdown-item" href="./layout-condensed.html">
  548. Condensed
  549. </a>
  550. <a class="dropdown-item" href="./layout-combo.html">
  551. Combined
  552. </a>
  553. </div>
  554. <div class="dropdown-menu-column">
  555. <a class="dropdown-item" href="./layout-navbar-dark.html">
  556. Navbar dark
  557. </a>
  558. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  559. Navbar sticky
  560. </a>
  561. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  562. Navbar overlap
  563. </a>
  564. <a class="dropdown-item" href="./layout-rtl.html">
  565. RTL mode
  566. </a>
  567. <a class="dropdown-item" href="./layout-fluid.html">
  568. Fluid
  569. </a>
  570. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  571. Fluid vertical
  572. </a>
  573. </div>
  574. </div>
  575. </div>
  576. </li>
  577. <li class="nav-item">
  578. <a class="nav-link" href="./icons.html" >
  579. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  580. <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>
  581. </span>
  582. <span class="nav-link-title">
  583. 4231 icons
  584. </span>
  585. </a>
  586. </li>
  587. <li class="nav-item dropdown">
  588. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  589. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  590. <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>
  591. </span>
  592. <span class="nav-link-title">
  593. Help
  594. </span>
  595. </a>
  596. <div class="dropdown-menu">
  597. <a class="dropdown-item" href="https://tabler.io/docs" target="_blank" rel="noopener">
  598. Documentation
  599. </a>
  600. <a class="dropdown-item" href="./changelog.html">
  601. Changelog
  602. </a>
  603. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  604. Source code
  605. </a>
  606. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  607. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  608. <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>
  609. Sponsor project!
  610. </a>
  611. </div>
  612. </li>
  613. </ul>
  614. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  615. <form action="./" method="get" autocomplete="off" novalidate>
  616. <div class="input-icon">
  617. <span class="input-icon-addon">
  618. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  619. <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>
  620. </span>
  621. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  622. </div>
  623. </form>
  624. </div>
  625. </div>
  626. </div>
  627. </div>
  628. </header>
  629. <div class="page-wrapper">
  630. <!-- Page header -->
  631. <div class="page-header d-print-none">
  632. <div class="container-xl">
  633. <div class="row g-2 align-items-center">
  634. <div class="col">
  635. <h2 class="page-title">
  636. Navigation
  637. </h2>
  638. </div>
  639. </div>
  640. </div>
  641. </div>
  642. <!-- Page body -->
  643. <div class="page-body">
  644. <div class="container-xl">
  645. <div class="box">
  646. <div class="mb-3">
  647. <header class="navbar navbar-expand-md navbar-transparent d-print-none" >
  648. <div class="container-xl">
  649. <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">
  650. <span class="navbar-toggler-icon"></span>
  651. </button>
  652. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  653. <a href=".">
  654. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  655. </a>
  656. </h1>
  657. <div class="navbar-nav flex-row order-md-last">
  658. <div class="d-none d-md-flex">
  659. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  660. data-bs-placement="bottom">
  661. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  662. <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>
  663. </a>
  664. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  665. data-bs-placement="bottom">
  666. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  667. <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>
  668. </a>
  669. <div class="nav-item dropdown d-none d-md-flex me-3">
  670. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  671. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  672. <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>
  673. <span class="badge bg-red"></span>
  674. </a>
  675. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  676. <div class="card">
  677. <div class="card-header">
  678. <h3 class="card-title">Last updates</h3>
  679. </div>
  680. <div class="list-group list-group-flush list-group-hoverable">
  681. <div class="list-group-item">
  682. <div class="row align-items-center">
  683. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  684. <div class="col text-truncate">
  685. <a href="#" class="text-body d-block">Example 1</a>
  686. <div class="d-block text-secondary text-truncate mt-n1">
  687. Change deprecated html tags to text decoration classes (#29604)
  688. </div>
  689. </div>
  690. <div class="col-auto">
  691. <a href="#" class="list-group-item-actions">
  692. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  693. <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>
  694. </a>
  695. </div>
  696. </div>
  697. </div>
  698. <div class="list-group-item">
  699. <div class="row align-items-center">
  700. <div class="col-auto"><span class="status-dot d-block"></span></div>
  701. <div class="col text-truncate">
  702. <a href="#" class="text-body d-block">Example 2</a>
  703. <div class="d-block text-secondary text-truncate mt-n1">
  704. justify-content:between ⇒ justify-content:space-between (#29734)
  705. </div>
  706. </div>
  707. <div class="col-auto">
  708. <a href="#" class="list-group-item-actions show">
  709. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  710. <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>
  711. </a>
  712. </div>
  713. </div>
  714. </div>
  715. <div class="list-group-item">
  716. <div class="row align-items-center">
  717. <div class="col-auto"><span class="status-dot d-block"></span></div>
  718. <div class="col text-truncate">
  719. <a href="#" class="text-body d-block">Example 3</a>
  720. <div class="d-block text-secondary text-truncate mt-n1">
  721. Update change-version.js (#29736)
  722. </div>
  723. </div>
  724. <div class="col-auto">
  725. <a href="#" class="list-group-item-actions">
  726. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  727. <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>
  728. </a>
  729. </div>
  730. </div>
  731. </div>
  732. <div class="list-group-item">
  733. <div class="row align-items-center">
  734. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  735. <div class="col text-truncate">
  736. <a href="#" class="text-body d-block">Example 4</a>
  737. <div class="d-block text-secondary text-truncate mt-n1">
  738. Regenerate package-lock.json (#29730)
  739. </div>
  740. </div>
  741. <div class="col-auto">
  742. <a href="#" class="list-group-item-actions">
  743. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  744. <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>
  745. </a>
  746. </div>
  747. </div>
  748. </div>
  749. </div>
  750. </div>
  751. </div>
  752. </div>
  753. </div>
  754. <div class="nav-item dropdown">
  755. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  756. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002m.jpg)"></span>
  757. <div class="d-none d-xl-block ps-2">
  758. <div>Mallory Hulme</div>
  759. <div class="mt-1 small text-secondary">Geologist IV</div>
  760. </div>
  761. </a>
  762. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  763. <a href="#" class="dropdown-item">Status</a>
  764. <a href="./profile.html" class="dropdown-item">Profile</a>
  765. <a href="#" class="dropdown-item">Feedback</a>
  766. <div class="dropdown-divider"></div>
  767. <a href="./settings.html" class="dropdown-item">Settings</a>
  768. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  769. </div>
  770. </div>
  771. </div>
  772. <div class="collapse navbar-collapse" id="navbar-menu">
  773. <div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
  774. <ul class="navbar-nav">
  775. <li class="nav-item active">
  776. <a class="nav-link" href="./#" >
  777. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  778. <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>
  779. </span>
  780. <span class="nav-link-title">
  781. First
  782. </span>
  783. </a>
  784. </li>
  785. <li class="nav-item">
  786. <a class="nav-link" href="./#" >
  787. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  788. <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>
  789. </span>
  790. <span class="nav-link-title">
  791. Second
  792. </span>
  793. <span class="badge badge-sm bg-red">2</span>
  794. </a>
  795. </li>
  796. <li class="nav-item dropdown">
  797. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  798. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  799. <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>
  800. </span>
  801. <span class="nav-link-title">
  802. Third
  803. </span>
  804. </a>
  805. <div class="dropdown-menu">
  806. <a class="dropdown-item" href="./#">
  807. First
  808. </a>
  809. <a class="dropdown-item" href="./#">
  810. Second
  811. </a>
  812. <a class="dropdown-item" href="./#">
  813. Third
  814. </a>
  815. </div>
  816. </li>
  817. <li class="nav-item">
  818. <a class="nav-link disabled" href="./#" >
  819. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  820. <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>
  821. </span>
  822. <span class="nav-link-title">
  823. Disabled
  824. </span>
  825. </a>
  826. </li>
  827. </ul>
  828. </div>
  829. </div>
  830. </div>
  831. </header>
  832. </div>
  833. <div class="mb-3">
  834. <header class="navbar navbar-expand-md d-print-none" >
  835. <div class="container-xl">
  836. <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">
  837. <span class="navbar-toggler-icon"></span>
  838. </button>
  839. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  840. <a href=".">
  841. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  842. </a>
  843. </h1>
  844. <div class="navbar-nav flex-row order-md-last">
  845. <div class="d-none d-md-flex">
  846. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  847. data-bs-placement="bottom">
  848. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  849. <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>
  850. </a>
  851. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  852. data-bs-placement="bottom">
  853. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  854. <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>
  855. </a>
  856. <div class="nav-item dropdown d-none d-md-flex me-3">
  857. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  858. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  859. <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>
  860. <span class="badge bg-red"></span>
  861. </a>
  862. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  863. <div class="card">
  864. <div class="card-header">
  865. <h3 class="card-title">Last updates</h3>
  866. </div>
  867. <div class="list-group list-group-flush list-group-hoverable">
  868. <div class="list-group-item">
  869. <div class="row align-items-center">
  870. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  871. <div class="col text-truncate">
  872. <a href="#" class="text-body d-block">Example 1</a>
  873. <div class="d-block text-secondary text-truncate mt-n1">
  874. Change deprecated html tags to text decoration classes (#29604)
  875. </div>
  876. </div>
  877. <div class="col-auto">
  878. <a href="#" class="list-group-item-actions">
  879. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  880. <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>
  881. </a>
  882. </div>
  883. </div>
  884. </div>
  885. <div class="list-group-item">
  886. <div class="row align-items-center">
  887. <div class="col-auto"><span class="status-dot d-block"></span></div>
  888. <div class="col text-truncate">
  889. <a href="#" class="text-body d-block">Example 2</a>
  890. <div class="d-block text-secondary text-truncate mt-n1">
  891. justify-content:between ⇒ justify-content:space-between (#29734)
  892. </div>
  893. </div>
  894. <div class="col-auto">
  895. <a href="#" class="list-group-item-actions show">
  896. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  897. <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>
  898. </a>
  899. </div>
  900. </div>
  901. </div>
  902. <div class="list-group-item">
  903. <div class="row align-items-center">
  904. <div class="col-auto"><span class="status-dot d-block"></span></div>
  905. <div class="col text-truncate">
  906. <a href="#" class="text-body d-block">Example 3</a>
  907. <div class="d-block text-secondary text-truncate mt-n1">
  908. Update change-version.js (#29736)
  909. </div>
  910. </div>
  911. <div class="col-auto">
  912. <a href="#" class="list-group-item-actions">
  913. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  914. <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>
  915. </a>
  916. </div>
  917. </div>
  918. </div>
  919. <div class="list-group-item">
  920. <div class="row align-items-center">
  921. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  922. <div class="col text-truncate">
  923. <a href="#" class="text-body d-block">Example 4</a>
  924. <div class="d-block text-secondary text-truncate mt-n1">
  925. Regenerate package-lock.json (#29730)
  926. </div>
  927. </div>
  928. <div class="col-auto">
  929. <a href="#" class="list-group-item-actions">
  930. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  931. <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>
  932. </a>
  933. </div>
  934. </div>
  935. </div>
  936. </div>
  937. </div>
  938. </div>
  939. </div>
  940. </div>
  941. <div class="nav-item dropdown">
  942. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  943. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003m.jpg)"></span>
  944. <div class="d-none d-xl-block ps-2">
  945. <div>Dunn Slane</div>
  946. <div class="mt-1 small text-secondary">Research Nurse</div>
  947. </div>
  948. </a>
  949. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  950. <a href="#" class="dropdown-item">Status</a>
  951. <a href="./profile.html" class="dropdown-item">Profile</a>
  952. <a href="#" class="dropdown-item">Feedback</a>
  953. <div class="dropdown-divider"></div>
  954. <a href="./settings.html" class="dropdown-item">Settings</a>
  955. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  956. </div>
  957. </div>
  958. </div>
  959. <div class="collapse navbar-collapse" id="navbar-menu">
  960. <div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
  961. <ul class="navbar-nav">
  962. <li class="nav-item active">
  963. <a class="nav-link" href="./#" >
  964. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  965. <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>
  966. </span>
  967. <span class="nav-link-title">
  968. First
  969. </span>
  970. </a>
  971. </li>
  972. <li class="nav-item">
  973. <a class="nav-link" href="./#" >
  974. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  975. <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>
  976. </span>
  977. <span class="nav-link-title">
  978. Second
  979. </span>
  980. <span class="badge badge-sm bg-red">2</span>
  981. </a>
  982. </li>
  983. <li class="nav-item dropdown">
  984. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  985. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  986. <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>
  987. </span>
  988. <span class="nav-link-title">
  989. Third
  990. </span>
  991. </a>
  992. <div class="dropdown-menu">
  993. <a class="dropdown-item" href="./#">
  994. First
  995. </a>
  996. <a class="dropdown-item" href="./#">
  997. Second
  998. </a>
  999. <a class="dropdown-item" href="./#">
  1000. Third
  1001. </a>
  1002. </div>
  1003. </li>
  1004. <li class="nav-item">
  1005. <a class="nav-link disabled" href="./#" >
  1006. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1007. <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>
  1008. </span>
  1009. <span class="nav-link-title">
  1010. Disabled
  1011. </span>
  1012. </a>
  1013. </li>
  1014. </ul>
  1015. </div>
  1016. </div>
  1017. </div>
  1018. </header>
  1019. </div>
  1020. <div class="mb-3">
  1021. <header class="navbar navbar-expand-md d-print-none" data-bs-theme="dark">
  1022. <div class="container-xl">
  1023. <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">
  1024. <span class="navbar-toggler-icon"></span>
  1025. </button>
  1026. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  1027. <a href=".">
  1028. Dashboard
  1029. </a>
  1030. </h1>
  1031. <div class="navbar-nav flex-row order-md-last">
  1032. <div class="d-none d-md-flex">
  1033. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  1034. data-bs-placement="bottom">
  1035. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  1036. <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>
  1037. </a>
  1038. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  1039. data-bs-placement="bottom">
  1040. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  1041. <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>
  1042. </a>
  1043. <div class="nav-item dropdown d-none d-md-flex me-3">
  1044. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  1045. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  1046. <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>
  1047. <span class="badge bg-red"></span>
  1048. </a>
  1049. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  1050. <div class="card">
  1051. <div class="card-header">
  1052. <h3 class="card-title">Last updates</h3>
  1053. </div>
  1054. <div class="list-group list-group-flush list-group-hoverable">
  1055. <div class="list-group-item">
  1056. <div class="row align-items-center">
  1057. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  1058. <div class="col text-truncate">
  1059. <a href="#" class="text-body d-block">Example 1</a>
  1060. <div class="d-block text-secondary text-truncate mt-n1">
  1061. Change deprecated html tags to text decoration classes (#29604)
  1062. </div>
  1063. </div>
  1064. <div class="col-auto">
  1065. <a href="#" class="list-group-item-actions">
  1066. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1067. <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>
  1068. </a>
  1069. </div>
  1070. </div>
  1071. </div>
  1072. <div class="list-group-item">
  1073. <div class="row align-items-center">
  1074. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1075. <div class="col text-truncate">
  1076. <a href="#" class="text-body d-block">Example 2</a>
  1077. <div class="d-block text-secondary text-truncate mt-n1">
  1078. justify-content:between ⇒ justify-content:space-between (#29734)
  1079. </div>
  1080. </div>
  1081. <div class="col-auto">
  1082. <a href="#" class="list-group-item-actions show">
  1083. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1084. <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>
  1085. </a>
  1086. </div>
  1087. </div>
  1088. </div>
  1089. <div class="list-group-item">
  1090. <div class="row align-items-center">
  1091. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1092. <div class="col text-truncate">
  1093. <a href="#" class="text-body d-block">Example 3</a>
  1094. <div class="d-block text-secondary text-truncate mt-n1">
  1095. Update change-version.js (#29736)
  1096. </div>
  1097. </div>
  1098. <div class="col-auto">
  1099. <a href="#" class="list-group-item-actions">
  1100. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1101. <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>
  1102. </a>
  1103. </div>
  1104. </div>
  1105. </div>
  1106. <div class="list-group-item">
  1107. <div class="row align-items-center">
  1108. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  1109. <div class="col text-truncate">
  1110. <a href="#" class="text-body d-block">Example 4</a>
  1111. <div class="d-block text-secondary text-truncate mt-n1">
  1112. Regenerate package-lock.json (#29730)
  1113. </div>
  1114. </div>
  1115. <div class="col-auto">
  1116. <a href="#" class="list-group-item-actions">
  1117. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1118. <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>
  1119. </a>
  1120. </div>
  1121. </div>
  1122. </div>
  1123. </div>
  1124. </div>
  1125. </div>
  1126. </div>
  1127. </div>
  1128. <div class="nav-item dropdown">
  1129. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  1130. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/000f.jpg)"></span>
  1131. </a>
  1132. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow" data-bs-theme="light">
  1133. <a href="#" class="dropdown-item">Status</a>
  1134. <a href="./profile.html" class="dropdown-item">Profile</a>
  1135. <a href="#" class="dropdown-item">Feedback</a>
  1136. <div class="dropdown-divider"></div>
  1137. <a href="./settings.html" class="dropdown-item">Settings</a>
  1138. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  1139. </div>
  1140. </div>
  1141. </div>
  1142. <div class="collapse navbar-collapse" id="navbar-menu">
  1143. <div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
  1144. <ul class="navbar-nav">
  1145. <li class="nav-item active">
  1146. <a class="nav-link" href="./#" >
  1147. <span class="nav-link-title">
  1148. First
  1149. </span>
  1150. </a>
  1151. </li>
  1152. <li class="nav-item">
  1153. <a class="nav-link" href="./#" >
  1154. <span class="nav-link-title">
  1155. Second
  1156. </span>
  1157. <span class="badge badge-sm bg-red">2</span>
  1158. </a>
  1159. </li>
  1160. <li class="nav-item dropdown">
  1161. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  1162. <span class="nav-link-title">
  1163. Third
  1164. </span>
  1165. </a>
  1166. <div class="dropdown-menu">
  1167. <a class="dropdown-item" href="./#">
  1168. First
  1169. </a>
  1170. <a class="dropdown-item" href="./#">
  1171. Second
  1172. </a>
  1173. <a class="dropdown-item" href="./#">
  1174. Third
  1175. </a>
  1176. </div>
  1177. </li>
  1178. <li class="nav-item">
  1179. <a class="nav-link disabled" href="./#" >
  1180. <span class="nav-link-title">
  1181. Disabled
  1182. </span>
  1183. </a>
  1184. </li>
  1185. </ul>
  1186. </div>
  1187. </div>
  1188. </div>
  1189. </header>
  1190. </div>
  1191. <div class="mb-3">
  1192. <header class="navbar navbar-expand-md d-print-none" style="background: #7952b3" data-bs-theme="dark">
  1193. <div class="container-xl">
  1194. <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">
  1195. <span class="navbar-toggler-icon"></span>
  1196. </button>
  1197. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  1198. <a href=".">
  1199. <img src="./static/logo-small.svg" width="32" height="32" alt="Tabler" class="navbar-brand-image">
  1200. </a>
  1201. </h1>
  1202. <div class="navbar-nav flex-row order-md-last">
  1203. <div class="d-none d-md-flex">
  1204. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  1205. data-bs-placement="bottom">
  1206. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  1207. <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>
  1208. </a>
  1209. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  1210. data-bs-placement="bottom">
  1211. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  1212. <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>
  1213. </a>
  1214. <div class="nav-item dropdown d-none d-md-flex me-3">
  1215. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  1216. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  1217. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="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>
  1218. <span class="badge bg-red"></span>
  1219. </a>
  1220. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  1221. <div class="card">
  1222. <div class="card-header">
  1223. <h3 class="card-title">Last updates</h3>
  1224. </div>
  1225. <div class="list-group list-group-flush list-group-hoverable">
  1226. <div class="list-group-item">
  1227. <div class="row align-items-center">
  1228. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  1229. <div class="col text-truncate">
  1230. <a href="#" class="text-body d-block">Example 1</a>
  1231. <div class="d-block text-secondary text-truncate mt-n1">
  1232. Change deprecated html tags to text decoration classes (#29604)
  1233. </div>
  1234. </div>
  1235. <div class="col-auto">
  1236. <a href="#" class="list-group-item-actions">
  1237. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1238. <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>
  1239. </a>
  1240. </div>
  1241. </div>
  1242. </div>
  1243. <div class="list-group-item">
  1244. <div class="row align-items-center">
  1245. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1246. <div class="col text-truncate">
  1247. <a href="#" class="text-body d-block">Example 2</a>
  1248. <div class="d-block text-secondary text-truncate mt-n1">
  1249. justify-content:between ⇒ justify-content:space-between (#29734)
  1250. </div>
  1251. </div>
  1252. <div class="col-auto">
  1253. <a href="#" class="list-group-item-actions show">
  1254. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1255. <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>
  1256. </a>
  1257. </div>
  1258. </div>
  1259. </div>
  1260. <div class="list-group-item">
  1261. <div class="row align-items-center">
  1262. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1263. <div class="col text-truncate">
  1264. <a href="#" class="text-body d-block">Example 3</a>
  1265. <div class="d-block text-secondary text-truncate mt-n1">
  1266. Update change-version.js (#29736)
  1267. </div>
  1268. </div>
  1269. <div class="col-auto">
  1270. <a href="#" class="list-group-item-actions">
  1271. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1272. <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>
  1273. </a>
  1274. </div>
  1275. </div>
  1276. </div>
  1277. <div class="list-group-item">
  1278. <div class="row align-items-center">
  1279. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  1280. <div class="col text-truncate">
  1281. <a href="#" class="text-body d-block">Example 4</a>
  1282. <div class="d-block text-secondary text-truncate mt-n1">
  1283. Regenerate package-lock.json (#29730)
  1284. </div>
  1285. </div>
  1286. <div class="col-auto">
  1287. <a href="#" class="list-group-item-actions">
  1288. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1289. <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>
  1290. </a>
  1291. </div>
  1292. </div>
  1293. </div>
  1294. </div>
  1295. </div>
  1296. </div>
  1297. </div>
  1298. </div>
  1299. <div class="nav-item dropdown">
  1300. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  1301. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/001f.jpg)"></span>
  1302. <div class="d-none d-xl-block ps-2">
  1303. <div>Maryjo Lebarree</div>
  1304. <div class="mt-1 small text-secondary">Civil Engineer</div>
  1305. </div>
  1306. </a>
  1307. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow" data-bs-theme="light">
  1308. <a href="#" class="dropdown-item">Status</a>
  1309. <a href="./profile.html" class="dropdown-item">Profile</a>
  1310. <a href="#" class="dropdown-item">Feedback</a>
  1311. <div class="dropdown-divider"></div>
  1312. <a href="./settings.html" class="dropdown-item">Settings</a>
  1313. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  1314. </div>
  1315. </div>
  1316. </div>
  1317. <div class="collapse navbar-collapse" id="navbar-menu">
  1318. <ul class="navbar-nav">
  1319. <li class="nav-item active">
  1320. <a class="nav-link" href="./#" >
  1321. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1322. <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>
  1323. </span>
  1324. <span class="nav-link-title">
  1325. First
  1326. </span>
  1327. </a>
  1328. </li>
  1329. <li class="nav-item">
  1330. <a class="nav-link" href="./#" >
  1331. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1332. <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>
  1333. </span>
  1334. <span class="nav-link-title">
  1335. Second
  1336. </span>
  1337. <span class="badge badge-sm bg-red">2</span>
  1338. </a>
  1339. </li>
  1340. <li class="nav-item dropdown">
  1341. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  1342. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1343. <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>
  1344. </span>
  1345. <span class="nav-link-title">
  1346. Third
  1347. </span>
  1348. </a>
  1349. <div class="dropdown-menu">
  1350. <a class="dropdown-item" href="./#">
  1351. First
  1352. </a>
  1353. <a class="dropdown-item" href="./#">
  1354. Second
  1355. </a>
  1356. <a class="dropdown-item" href="./#">
  1357. Third
  1358. </a>
  1359. </div>
  1360. </li>
  1361. <li class="nav-item">
  1362. <a class="nav-link disabled" href="./#" >
  1363. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1364. <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>
  1365. </span>
  1366. <span class="nav-link-title">
  1367. Disabled
  1368. </span>
  1369. </a>
  1370. </li>
  1371. </ul>
  1372. </div>
  1373. </div>
  1374. </header>
  1375. </div>
  1376. <div class="mb-3">
  1377. <header class="navbar navbar-expand-md bg-primary d-print-none" data-bs-theme="dark">
  1378. <div class="container-xl">
  1379. <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">
  1380. <span class="navbar-toggler-icon"></span>
  1381. </button>
  1382. <div class="navbar-nav flex-row order-md-last">
  1383. <div class="d-none d-md-flex">
  1384. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  1385. data-bs-placement="bottom">
  1386. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  1387. <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>
  1388. </a>
  1389. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  1390. data-bs-placement="bottom">
  1391. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  1392. <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>
  1393. </a>
  1394. <div class="nav-item dropdown d-none d-md-flex me-3">
  1395. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  1396. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  1397. <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>
  1398. <span class="badge bg-red"></span>
  1399. </a>
  1400. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  1401. <div class="card">
  1402. <div class="card-header">
  1403. <h3 class="card-title">Last updates</h3>
  1404. </div>
  1405. <div class="list-group list-group-flush list-group-hoverable">
  1406. <div class="list-group-item">
  1407. <div class="row align-items-center">
  1408. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  1409. <div class="col text-truncate">
  1410. <a href="#" class="text-body d-block">Example 1</a>
  1411. <div class="d-block text-secondary text-truncate mt-n1">
  1412. Change deprecated html tags to text decoration classes (#29604)
  1413. </div>
  1414. </div>
  1415. <div class="col-auto">
  1416. <a href="#" class="list-group-item-actions">
  1417. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1418. <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>
  1419. </a>
  1420. </div>
  1421. </div>
  1422. </div>
  1423. <div class="list-group-item">
  1424. <div class="row align-items-center">
  1425. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1426. <div class="col text-truncate">
  1427. <a href="#" class="text-body d-block">Example 2</a>
  1428. <div class="d-block text-secondary text-truncate mt-n1">
  1429. justify-content:between ⇒ justify-content:space-between (#29734)
  1430. </div>
  1431. </div>
  1432. <div class="col-auto">
  1433. <a href="#" class="list-group-item-actions show">
  1434. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1435. <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>
  1436. </a>
  1437. </div>
  1438. </div>
  1439. </div>
  1440. <div class="list-group-item">
  1441. <div class="row align-items-center">
  1442. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1443. <div class="col text-truncate">
  1444. <a href="#" class="text-body d-block">Example 3</a>
  1445. <div class="d-block text-secondary text-truncate mt-n1">
  1446. Update change-version.js (#29736)
  1447. </div>
  1448. </div>
  1449. <div class="col-auto">
  1450. <a href="#" class="list-group-item-actions">
  1451. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1452. <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>
  1453. </a>
  1454. </div>
  1455. </div>
  1456. </div>
  1457. <div class="list-group-item">
  1458. <div class="row align-items-center">
  1459. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  1460. <div class="col text-truncate">
  1461. <a href="#" class="text-body d-block">Example 4</a>
  1462. <div class="d-block text-secondary text-truncate mt-n1">
  1463. Regenerate package-lock.json (#29730)
  1464. </div>
  1465. </div>
  1466. <div class="col-auto">
  1467. <a href="#" class="list-group-item-actions">
  1468. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1469. <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>
  1470. </a>
  1471. </div>
  1472. </div>
  1473. </div>
  1474. </div>
  1475. </div>
  1476. </div>
  1477. </div>
  1478. </div>
  1479. <div class="nav-item dropdown">
  1480. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  1481. <span class="avatar avatar-sm">EP</span>
  1482. </a>
  1483. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow" data-bs-theme="light">
  1484. <a href="#" class="dropdown-item">Status</a>
  1485. <a href="./profile.html" class="dropdown-item">Profile</a>
  1486. <a href="#" class="dropdown-item">Feedback</a>
  1487. <div class="dropdown-divider"></div>
  1488. <a href="./settings.html" class="dropdown-item">Settings</a>
  1489. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  1490. </div>
  1491. </div>
  1492. </div>
  1493. <div class="collapse navbar-collapse" id="navbar-menu">
  1494. <div class="d-flex flex-column flex-md-row flex-fill align-items-stretch align-items-md-center">
  1495. <ul class="navbar-nav">
  1496. <li class="nav-item active">
  1497. <a class="nav-link" href="./#" >
  1498. <span class="nav-link-title">
  1499. First
  1500. </span>
  1501. </a>
  1502. </li>
  1503. <li class="nav-item">
  1504. <a class="nav-link" href="./#" >
  1505. <span class="nav-link-title">
  1506. Second
  1507. </span>
  1508. <span class="badge badge-sm bg-red">2</span>
  1509. </a>
  1510. </li>
  1511. <li class="nav-item dropdown">
  1512. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  1513. <span class="nav-link-title">
  1514. Third
  1515. </span>
  1516. </a>
  1517. <div class="dropdown-menu">
  1518. <a class="dropdown-item" href="./#">
  1519. First
  1520. </a>
  1521. <a class="dropdown-item" href="./#">
  1522. Second
  1523. </a>
  1524. <a class="dropdown-item" href="./#">
  1525. Third
  1526. </a>
  1527. </div>
  1528. </li>
  1529. <li class="nav-item">
  1530. <a class="nav-link disabled" href="./#" >
  1531. <span class="nav-link-title">
  1532. Disabled
  1533. </span>
  1534. </a>
  1535. </li>
  1536. </ul>
  1537. </div>
  1538. </div>
  1539. </div>
  1540. </header>
  1541. </div>
  1542. <div class="mb-3">
  1543. <header class="navbar navbar-expand-md d-print-none" >
  1544. <div class="container-xl">
  1545. <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">
  1546. <span class="navbar-toggler-icon"></span>
  1547. </button>
  1548. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  1549. <a href=".">
  1550. <img src="./static/logo-small.svg" width="32" height="32" alt="Tabler" class="navbar-brand-image me-3">
  1551. Dashboard
  1552. </a>
  1553. </h1>
  1554. <div class="navbar-nav flex-row order-md-last">
  1555. <div class="nav-item d-none d-md-flex me-3">
  1556. <div class="btn-list">
  1557. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  1558. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  1559. <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>
  1560. Source code
  1561. </a>
  1562. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  1563. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1564. <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>
  1565. Sponsor
  1566. </a>
  1567. </div>
  1568. </div>
  1569. <div class="d-none d-md-flex">
  1570. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  1571. data-bs-placement="bottom">
  1572. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  1573. <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>
  1574. </a>
  1575. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  1576. data-bs-placement="bottom">
  1577. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  1578. <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>
  1579. </a>
  1580. <div class="nav-item dropdown d-none d-md-flex me-3">
  1581. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  1582. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  1583. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><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>
  1584. <span class="badge bg-red"></span>
  1585. </a>
  1586. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  1587. <div class="card">
  1588. <div class="card-header">
  1589. <h3 class="card-title">Last updates</h3>
  1590. </div>
  1591. <div class="list-group list-group-flush list-group-hoverable">
  1592. <div class="list-group-item">
  1593. <div class="row align-items-center">
  1594. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  1595. <div class="col text-truncate">
  1596. <a href="#" class="text-body d-block">Example 1</a>
  1597. <div class="d-block text-secondary text-truncate mt-n1">
  1598. Change deprecated html tags to text decoration classes (#29604)
  1599. </div>
  1600. </div>
  1601. <div class="col-auto">
  1602. <a href="#" class="list-group-item-actions">
  1603. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1604. <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>
  1605. </a>
  1606. </div>
  1607. </div>
  1608. </div>
  1609. <div class="list-group-item">
  1610. <div class="row align-items-center">
  1611. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1612. <div class="col text-truncate">
  1613. <a href="#" class="text-body d-block">Example 2</a>
  1614. <div class="d-block text-secondary text-truncate mt-n1">
  1615. justify-content:between ⇒ justify-content:space-between (#29734)
  1616. </div>
  1617. </div>
  1618. <div class="col-auto">
  1619. <a href="#" class="list-group-item-actions show">
  1620. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1621. <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>
  1622. </a>
  1623. </div>
  1624. </div>
  1625. </div>
  1626. <div class="list-group-item">
  1627. <div class="row align-items-center">
  1628. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1629. <div class="col text-truncate">
  1630. <a href="#" class="text-body d-block">Example 3</a>
  1631. <div class="d-block text-secondary text-truncate mt-n1">
  1632. Update change-version.js (#29736)
  1633. </div>
  1634. </div>
  1635. <div class="col-auto">
  1636. <a href="#" class="list-group-item-actions">
  1637. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1638. <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>
  1639. </a>
  1640. </div>
  1641. </div>
  1642. </div>
  1643. <div class="list-group-item">
  1644. <div class="row align-items-center">
  1645. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  1646. <div class="col text-truncate">
  1647. <a href="#" class="text-body d-block">Example 4</a>
  1648. <div class="d-block text-secondary text-truncate mt-n1">
  1649. Regenerate package-lock.json (#29730)
  1650. </div>
  1651. </div>
  1652. <div class="col-auto">
  1653. <a href="#" class="list-group-item-actions">
  1654. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1655. <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>
  1656. </a>
  1657. </div>
  1658. </div>
  1659. </div>
  1660. </div>
  1661. </div>
  1662. </div>
  1663. </div>
  1664. </div>
  1665. <div class="nav-item dropdown">
  1666. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  1667. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/002f.jpg)"></span>
  1668. <div class="d-none d-xl-block ps-2">
  1669. <div>Kellie Skingley</div>
  1670. <div class="mt-1 small text-secondary">Teacher</div>
  1671. </div>
  1672. </a>
  1673. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
  1674. <a href="#" class="dropdown-item">Status</a>
  1675. <a href="./profile.html" class="dropdown-item">Profile</a>
  1676. <a href="#" class="dropdown-item">Feedback</a>
  1677. <div class="dropdown-divider"></div>
  1678. <a href="./settings.html" class="dropdown-item">Settings</a>
  1679. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  1680. </div>
  1681. </div>
  1682. </div>
  1683. </div>
  1684. </header>
  1685. <header class="navbar-expand-md">
  1686. <div class="collapse navbar-collapse" id="navbar-menu">
  1687. <div class="navbar">
  1688. <div class="container-xl">
  1689. <ul class="navbar-nav">
  1690. <li class="nav-item active">
  1691. <a class="nav-link" href="./#" >
  1692. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1693. <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>
  1694. </span>
  1695. <span class="nav-link-title">
  1696. First
  1697. </span>
  1698. </a>
  1699. </li>
  1700. <li class="nav-item">
  1701. <a class="nav-link" href="./#" >
  1702. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1703. <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>
  1704. </span>
  1705. <span class="nav-link-title">
  1706. Second
  1707. </span>
  1708. <span class="badge badge-sm bg-red">2</span>
  1709. </a>
  1710. </li>
  1711. <li class="nav-item dropdown">
  1712. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  1713. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1714. <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>
  1715. </span>
  1716. <span class="nav-link-title">
  1717. Third
  1718. </span>
  1719. </a>
  1720. <div class="dropdown-menu">
  1721. <a class="dropdown-item" href="./#">
  1722. First
  1723. </a>
  1724. <a class="dropdown-item" href="./#">
  1725. Second
  1726. </a>
  1727. <a class="dropdown-item" href="./#">
  1728. Third
  1729. </a>
  1730. </div>
  1731. </li>
  1732. <li class="nav-item">
  1733. <a class="nav-link disabled" href="./#" >
  1734. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1735. <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>
  1736. </span>
  1737. <span class="nav-link-title">
  1738. Disabled
  1739. </span>
  1740. </a>
  1741. </li>
  1742. </ul>
  1743. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  1744. <form action="./" method="get" autocomplete="off" novalidate>
  1745. <div class="input-icon">
  1746. <span class="input-icon-addon">
  1747. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  1748. <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>
  1749. </span>
  1750. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  1751. </div>
  1752. </form>
  1753. </div>
  1754. </div>
  1755. </div>
  1756. </div>
  1757. </header>
  1758. </div>
  1759. <div class="mb-3">
  1760. <header class="navbar navbar-expand-md d-print-none" data-bs-theme="dark">
  1761. <div class="container-xl">
  1762. <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">
  1763. <span class="navbar-toggler-icon"></span>
  1764. </button>
  1765. <h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3">
  1766. <a href=".">
  1767. <img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
  1768. </a>
  1769. </h1>
  1770. <div class="navbar-nav flex-row order-md-last">
  1771. <div class="nav-item d-none d-md-flex me-3">
  1772. <div class="btn-list">
  1773. <a href="https://github.com/tabler/tabler" class="btn" target="_blank" rel="noreferrer">
  1774. <!-- Download SVG icon from http://tabler-icons.io/i/brand-github -->
  1775. <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>
  1776. Source code
  1777. </a>
  1778. <a href="https://github.com/sponsors/codecalm" class="btn" target="_blank" rel="noreferrer">
  1779. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1780. <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>
  1781. Sponsor
  1782. </a>
  1783. </div>
  1784. </div>
  1785. <div class="d-none d-md-flex">
  1786. <a href="?theme=dark" class="nav-link px-0 hide-theme-dark" title="Enable dark mode" data-bs-toggle="tooltip"
  1787. data-bs-placement="bottom">
  1788. <!-- Download SVG icon from http://tabler-icons.io/i/moon -->
  1789. <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>
  1790. </a>
  1791. <a href="?theme=light" class="nav-link px-0 hide-theme-light" title="Enable light mode" data-bs-toggle="tooltip"
  1792. data-bs-placement="bottom">
  1793. <!-- Download SVG icon from http://tabler-icons.io/i/sun -->
  1794. <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>
  1795. </a>
  1796. <div class="nav-item dropdown d-none d-md-flex me-3">
  1797. <a href="#" class="nav-link px-0" data-bs-toggle="dropdown" tabindex="-1" aria-label="Show notifications">
  1798. <!-- Download SVG icon from http://tabler-icons.io/i/bell -->
  1799. <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>
  1800. <span class="badge bg-red"></span>
  1801. </a>
  1802. <div class="dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card">
  1803. <div class="card">
  1804. <div class="card-header">
  1805. <h3 class="card-title">Last updates</h3>
  1806. </div>
  1807. <div class="list-group list-group-flush list-group-hoverable">
  1808. <div class="list-group-item">
  1809. <div class="row align-items-center">
  1810. <div class="col-auto"><span class="status-dot status-dot-animated bg-red d-block"></span></div>
  1811. <div class="col text-truncate">
  1812. <a href="#" class="text-body d-block">Example 1</a>
  1813. <div class="d-block text-secondary text-truncate mt-n1">
  1814. Change deprecated html tags to text decoration classes (#29604)
  1815. </div>
  1816. </div>
  1817. <div class="col-auto">
  1818. <a href="#" class="list-group-item-actions">
  1819. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1820. <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>
  1821. </a>
  1822. </div>
  1823. </div>
  1824. </div>
  1825. <div class="list-group-item">
  1826. <div class="row align-items-center">
  1827. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1828. <div class="col text-truncate">
  1829. <a href="#" class="text-body d-block">Example 2</a>
  1830. <div class="d-block text-secondary text-truncate mt-n1">
  1831. justify-content:between ⇒ justify-content:space-between (#29734)
  1832. </div>
  1833. </div>
  1834. <div class="col-auto">
  1835. <a href="#" class="list-group-item-actions show">
  1836. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1837. <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>
  1838. </a>
  1839. </div>
  1840. </div>
  1841. </div>
  1842. <div class="list-group-item">
  1843. <div class="row align-items-center">
  1844. <div class="col-auto"><span class="status-dot d-block"></span></div>
  1845. <div class="col text-truncate">
  1846. <a href="#" class="text-body d-block">Example 3</a>
  1847. <div class="d-block text-secondary text-truncate mt-n1">
  1848. Update change-version.js (#29736)
  1849. </div>
  1850. </div>
  1851. <div class="col-auto">
  1852. <a href="#" class="list-group-item-actions">
  1853. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1854. <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>
  1855. </a>
  1856. </div>
  1857. </div>
  1858. </div>
  1859. <div class="list-group-item">
  1860. <div class="row align-items-center">
  1861. <div class="col-auto"><span class="status-dot status-dot-animated bg-green d-block"></span></div>
  1862. <div class="col text-truncate">
  1863. <a href="#" class="text-body d-block">Example 4</a>
  1864. <div class="d-block text-secondary text-truncate mt-n1">
  1865. Regenerate package-lock.json (#29730)
  1866. </div>
  1867. </div>
  1868. <div class="col-auto">
  1869. <a href="#" class="list-group-item-actions">
  1870. <!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1871. <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>
  1872. </a>
  1873. </div>
  1874. </div>
  1875. </div>
  1876. </div>
  1877. </div>
  1878. </div>
  1879. </div>
  1880. </div>
  1881. <div class="nav-item dropdown">
  1882. <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" aria-label="Open user menu">
  1883. <span class="avatar avatar-sm" style="background-image: url(./static/avatars/003f.jpg)"></span>
  1884. <div class="d-none d-xl-block ps-2">
  1885. <div>Christabel Charlwood</div>
  1886. <div class="mt-1 small text-secondary">Tax Accountant</div>
  1887. </div>
  1888. </a>
  1889. <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow" data-bs-theme="light">
  1890. <a href="#" class="dropdown-item">Status</a>
  1891. <a href="./profile.html" class="dropdown-item">Profile</a>
  1892. <a href="#" class="dropdown-item">Feedback</a>
  1893. <div class="dropdown-divider"></div>
  1894. <a href="./settings.html" class="dropdown-item">Settings</a>
  1895. <a href="./sign-in.html" class="dropdown-item">Logout</a>
  1896. </div>
  1897. </div>
  1898. </div>
  1899. </div>
  1900. </header>
  1901. <header class="navbar-expand-md">
  1902. <div class="collapse navbar-collapse" id="navbar-menu">
  1903. <div class="navbar">
  1904. <div class="container-xl">
  1905. <ul class="navbar-nav">
  1906. <li class="nav-item active">
  1907. <a class="nav-link" href="./#" >
  1908. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1909. <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>
  1910. </span>
  1911. <span class="nav-link-title">
  1912. First
  1913. </span>
  1914. </a>
  1915. </li>
  1916. <li class="nav-item">
  1917. <a class="nav-link" href="./#" >
  1918. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1919. <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>
  1920. </span>
  1921. <span class="nav-link-title">
  1922. Second
  1923. </span>
  1924. <span class="badge badge-sm bg-red">2</span>
  1925. </a>
  1926. </li>
  1927. <li class="nav-item dropdown">
  1928. <a class="nav-link dropdown-toggle" href="#navbar-third" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  1929. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1930. <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>
  1931. </span>
  1932. <span class="nav-link-title">
  1933. Third
  1934. </span>
  1935. </a>
  1936. <div class="dropdown-menu">
  1937. <a class="dropdown-item" href="./#">
  1938. First
  1939. </a>
  1940. <a class="dropdown-item" href="./#">
  1941. Second
  1942. </a>
  1943. <a class="dropdown-item" href="./#">
  1944. Third
  1945. </a>
  1946. </div>
  1947. </li>
  1948. <li class="nav-item">
  1949. <a class="nav-link disabled" href="./#" >
  1950. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  1951. <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>
  1952. </span>
  1953. <span class="nav-link-title">
  1954. Disabled
  1955. </span>
  1956. </a>
  1957. </li>
  1958. </ul>
  1959. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  1960. <form action="./" method="get" autocomplete="off" novalidate>
  1961. <div class="input-icon">
  1962. <span class="input-icon-addon">
  1963. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  1964. <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>
  1965. </span>
  1966. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  1967. </div>
  1968. </form>
  1969. </div>
  1970. </div>
  1971. </div>
  1972. </div>
  1973. </header>
  1974. </div>
  1975. </div>
  1976. </div>
  1977. </div>
  1978. <footer class="footer footer-transparent d-print-none">
  1979. <div class="container-xl">
  1980. <div class="row text-center align-items-center flex-row-reverse">
  1981. <div class="col-lg-auto ms-lg-auto">
  1982. <ul class="list-inline list-inline-dots mb-0">
  1983. <li class="list-inline-item"><a href="https://tabler.io/docs" target="_blank" class="link-secondary" rel="noopener">Documentation</a></li>
  1984. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  1985. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  1986. <li class="list-inline-item">
  1987. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  1988. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1989. <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>
  1990. Sponsor
  1991. </a>
  1992. </li>
  1993. </ul>
  1994. </div>
  1995. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  1996. <ul class="list-inline list-inline-dots mb-0">
  1997. <li class="list-inline-item">
  1998. Copyright &copy; 2023
  1999. <a href="." class="link-secondary">Tabler</a>.
  2000. All rights reserved.
  2001. </li>
  2002. <li class="list-inline-item">
  2003. <a href="./changelog.html" class="link-secondary" rel="noopener">
  2004. v1.0.0-beta19
  2005. </a>
  2006. </li>
  2007. </ul>
  2008. </div>
  2009. </div>
  2010. </div>
  2011. </footer>
  2012. </div>
  2013. </div>
  2014. <!-- Libs JS -->
  2015. <!-- Tabler Core -->
  2016. <script src="./dist/js/tabler.min.js?1685973381" defer></script>
  2017. <script src="./dist/js/demo.min.js?1685973381" defer></script>
  2018. </body>
  2019. </html>