navigation.html 146 KB

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