music.html 88 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379
  1. <!doctype html>
  2. <!--
  3. * Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
  4. * @version 1.0.0-beta20
  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>Music components - 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?1692870487" rel="stylesheet"/>
  18. <link href="./dist/css/tabler-flags.min.css?1692870487" rel="stylesheet"/>
  19. <link href="./dist/css/tabler-payments.min.css?1692870487" rel="stylesheet"/>
  20. <link href="./dist/css/tabler-vendors.min.css?1692870487" rel="stylesheet"/>
  21. <link href="./dist/css/demo.min.css?1692870487" 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?1692870487"></script>
  34. <div class="page">
  35. <!-- Navbar -->
  36. <header class="navbar navbar-expand-md 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 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3h-16a4 4 0 0 0 2 -3v-3a7 7 0 0 1 4 -6" /><path d="M9 17v1a3 3 0 0 0 6 0v-1" /></svg>
  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-secondary 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-secondary 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-secondary 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-secondary 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-secondary">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">
  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 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="./alerts.html">
  205. Alerts
  206. </a>
  207. <a class="dropdown-item" href="./accordion.html">
  208. Accordion
  209. </a>
  210. <div class="dropend">
  211. <a class="dropdown-item dropdown-toggle" href="#sidebar-authentication" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  212. Authentication
  213. </a>
  214. <div class="dropdown-menu">
  215. <a href="./sign-in.html" class="dropdown-item">
  216. Sign in
  217. </a>
  218. <a href="./sign-in-link.html" class="dropdown-item">
  219. Sign in link
  220. </a>
  221. <a href="./sign-in-illustration.html" class="dropdown-item">
  222. Sign in with illustration
  223. </a>
  224. <a href="./sign-in-cover.html" class="dropdown-item">
  225. Sign in with cover
  226. </a>
  227. <a href="./sign-up.html" class="dropdown-item">
  228. Sign up
  229. </a>
  230. <a href="./forgot-password.html" class="dropdown-item">
  231. Forgot password
  232. </a>
  233. <a href="./terms-of-service.html" class="dropdown-item">
  234. Terms of service
  235. </a>
  236. <a href="./auth-lock.html" class="dropdown-item">
  237. Lock screen
  238. </a>
  239. <a href="./2-step-verification.html" class="dropdown-item">
  240. 2 step verification
  241. </a>
  242. <a href="./2-step-verification-code.html" class="dropdown-item">
  243. 2 step verification code
  244. </a>
  245. </div>
  246. </div>
  247. <a class="dropdown-item" href="./blank.html">
  248. Blank page
  249. </a>
  250. <a class="dropdown-item" href="./badges.html">
  251. Badges
  252. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  253. </a>
  254. <a class="dropdown-item" href="./buttons.html">
  255. Buttons
  256. </a>
  257. <div class="dropend">
  258. <a class="dropdown-item dropdown-toggle" href="#sidebar-cards" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  259. Cards
  260. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  261. </a>
  262. <div class="dropdown-menu">
  263. <a href="./cards.html" class="dropdown-item">
  264. Sample cards
  265. </a>
  266. <a href="./card-actions.html" class="dropdown-item">
  267. Card actions
  268. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  269. </a>
  270. <a href="./cards-masonry.html" class="dropdown-item">
  271. Cards Masonry
  272. </a>
  273. </div>
  274. </div>
  275. <a class="dropdown-item" href="./carousel.html">
  276. Carousel
  277. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  278. </a>
  279. <a class="dropdown-item" href="./charts.html">
  280. Charts
  281. </a>
  282. <a class="dropdown-item" href="./colors.html">
  283. Colors
  284. </a>
  285. <a class="dropdown-item" href="./colorpicker.html">
  286. Color picker
  287. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  288. </a>
  289. <a class="dropdown-item" href="./datagrid.html">
  290. Data grid
  291. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  292. </a>
  293. <a class="dropdown-item" href="./datatables.html">
  294. Datatables
  295. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  296. </a>
  297. <a class="dropdown-item" href="./dropdowns.html">
  298. Dropdowns
  299. </a>
  300. <a class="dropdown-item" href="./dropzone.html">
  301. Dropzone
  302. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  303. </a>
  304. <div class="dropend">
  305. <a class="dropdown-item dropdown-toggle" href="#sidebar-error" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  306. Error pages
  307. </a>
  308. <div class="dropdown-menu">
  309. <a href="./error-404.html" class="dropdown-item">
  310. 404 page
  311. </a>
  312. <a href="./error-500.html" class="dropdown-item">
  313. 500 page
  314. </a>
  315. <a href="./error-maintenance.html" class="dropdown-item">
  316. Maintenance page
  317. </a>
  318. </div>
  319. </div>
  320. <a class="dropdown-item" href="./flags.html">
  321. Flags
  322. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  323. </a>
  324. <a class="dropdown-item" href="./inline-player.html">
  325. Inline player
  326. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  327. </a>
  328. </div>
  329. <div class="dropdown-menu-column">
  330. <a class="dropdown-item" href="./lightbox.html">
  331. Lightbox
  332. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  333. </a>
  334. <a class="dropdown-item" href="./lists.html">
  335. Lists
  336. </a>
  337. <a class="dropdown-item" href="./modals.html">
  338. Modal
  339. </a>
  340. <a class="dropdown-item" href="./maps.html">
  341. Map
  342. </a>
  343. <a class="dropdown-item" href="./map-fullsize.html">
  344. Map fullsize
  345. </a>
  346. <a class="dropdown-item" href="./maps-vector.html">
  347. Map vector
  348. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  349. </a>
  350. <a class="dropdown-item" href="./markdown.html">
  351. Markdown
  352. </a>
  353. <a class="dropdown-item" href="./navigation.html">
  354. Navigation
  355. </a>
  356. <a class="dropdown-item" href="./offcanvas.html">
  357. Offcanvas
  358. </a>
  359. <a class="dropdown-item" href="./pagination.html">
  360. <!-- Download SVG icon from http://tabler-icons.io/i/pie-chart -->
  361. Pagination
  362. </a>
  363. <a class="dropdown-item" href="./placeholder.html">
  364. Placeholder
  365. </a>
  366. <a class="dropdown-item" href="./steps.html">
  367. Steps
  368. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  369. </a>
  370. <a class="dropdown-item" href="./stars-rating.html">
  371. Stars rating
  372. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  373. </a>
  374. <a class="dropdown-item" href="./tabs.html">
  375. Tabs
  376. </a>
  377. <a class="dropdown-item" href="./tags.html">
  378. Tags
  379. </a>
  380. <a class="dropdown-item" href="./tables.html">
  381. Tables
  382. </a>
  383. <a class="dropdown-item" href="./typography.html">
  384. Typography
  385. </a>
  386. <a class="dropdown-item" href="./tinymce.html">
  387. TinyMCE
  388. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  389. </a>
  390. </div>
  391. </div>
  392. </div>
  393. </li>
  394. <li class="nav-item">
  395. <a class="nav-link" href="./form-elements.html" >
  396. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/checkbox -->
  397. <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>
  398. </span>
  399. <span class="nav-link-title">
  400. Form elements
  401. </span>
  402. </a>
  403. </li>
  404. <li class="nav-item active dropdown">
  405. <a class="nav-link dropdown-toggle" href="#navbar-extra" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  406. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/star -->
  407. <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>
  408. </span>
  409. <span class="nav-link-title">
  410. Extra
  411. </span>
  412. </a>
  413. <div class="dropdown-menu">
  414. <div class="dropdown-menu-columns">
  415. <div class="dropdown-menu-column">
  416. <a class="dropdown-item" href="./empty.html">
  417. Empty page
  418. </a>
  419. <a class="dropdown-item" href="./cookie-banner.html">
  420. Cookie banner
  421. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  422. </a>
  423. <a class="dropdown-item" href="./chat.html">
  424. Chat
  425. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  426. </a>
  427. <a class="dropdown-item" href="./activity.html">
  428. Activity
  429. </a>
  430. <a class="dropdown-item" href="./gallery.html">
  431. Gallery
  432. </a>
  433. <a class="dropdown-item" href="./invoice.html">
  434. Invoice
  435. </a>
  436. <a class="dropdown-item" href="./search-results.html">
  437. Search results
  438. </a>
  439. <a class="dropdown-item" href="./pricing.html">
  440. Pricing cards
  441. </a>
  442. <a class="dropdown-item" href="./pricing-table.html">
  443. Pricing table
  444. </a>
  445. <a class="dropdown-item" href="./faq.html">
  446. FAQ
  447. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  448. </a>
  449. <a class="dropdown-item" href="./users.html">
  450. Users
  451. </a>
  452. <a class="dropdown-item" href="./license.html">
  453. License
  454. </a>
  455. </div>
  456. <div class="dropdown-menu-column">
  457. <a class="dropdown-item" href="./logs.html">
  458. Logs
  459. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  460. </a>
  461. <a class="dropdown-item active" href="./music.html">
  462. Music
  463. </a>
  464. <a class="dropdown-item" href="./photogrid.html">
  465. Photogrid
  466. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  467. </a>
  468. <a class="dropdown-item" href="./tasks.html">
  469. Tasks
  470. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  471. </a>
  472. <a class="dropdown-item" href="./uptime.html">
  473. Uptime monitor
  474. </a>
  475. <a class="dropdown-item" href="./widgets.html">
  476. Widgets
  477. </a>
  478. <a class="dropdown-item" href="./wizard.html">
  479. Wizard
  480. </a>
  481. <a class="dropdown-item" href="./settings.html">
  482. Settings
  483. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  484. </a>
  485. <a class="dropdown-item" href="./trial-ended.html">
  486. Trial ended
  487. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  488. </a>
  489. <a class="dropdown-item" href="./job-listing.html">
  490. Job listing
  491. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  492. </a>
  493. <a class="dropdown-item" href="./page-loader.html">
  494. Page loader
  495. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  496. </a>
  497. </div>
  498. </div>
  499. </div>
  500. </li>
  501. <li class="nav-item dropdown">
  502. <a class="nav-link dropdown-toggle" href="#navbar-layout" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  503. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/layout-2 -->
  504. <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>
  505. </span>
  506. <span class="nav-link-title">
  507. Layout
  508. </span>
  509. </a>
  510. <div class="dropdown-menu">
  511. <div class="dropdown-menu-columns">
  512. <div class="dropdown-menu-column">
  513. <a class="dropdown-item" href="./layout-horizontal.html">
  514. Horizontal
  515. </a>
  516. <a class="dropdown-item" href="./layout-boxed.html">
  517. Boxed
  518. <span class="badge badge-sm bg-green-lt text-uppercase ms-auto">New</span>
  519. </a>
  520. <a class="dropdown-item" href="./layout-vertical.html">
  521. Vertical
  522. </a>
  523. <a class="dropdown-item" href="./layout-vertical-transparent.html">
  524. Vertical transparent
  525. </a>
  526. <a class="dropdown-item" href="./layout-vertical-right.html">
  527. Right vertical
  528. </a>
  529. <a class="dropdown-item" href="./layout-condensed.html">
  530. Condensed
  531. </a>
  532. <a class="dropdown-item" href="./layout-combo.html">
  533. Combined
  534. </a>
  535. </div>
  536. <div class="dropdown-menu-column">
  537. <a class="dropdown-item" href="./layout-navbar-dark.html">
  538. Navbar dark
  539. </a>
  540. <a class="dropdown-item" href="./layout-navbar-sticky.html">
  541. Navbar sticky
  542. </a>
  543. <a class="dropdown-item" href="./layout-navbar-overlap.html">
  544. Navbar overlap
  545. </a>
  546. <a class="dropdown-item" href="./layout-rtl.html">
  547. RTL mode
  548. </a>
  549. <a class="dropdown-item" href="./layout-fluid.html">
  550. Fluid
  551. </a>
  552. <a class="dropdown-item" href="./layout-fluid-vertical.html">
  553. Fluid vertical
  554. </a>
  555. </div>
  556. </div>
  557. </div>
  558. </li>
  559. <li class="nav-item">
  560. <a class="nav-link" href="./icons.html" >
  561. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/ghost -->
  562. <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>
  563. </span>
  564. <span class="nav-link-title">
  565. 4637 icons
  566. </span>
  567. </a>
  568. </li>
  569. <li class="nav-item">
  570. <a class="nav-link" href="./emails.html" >
  571. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/mail-opened -->
  572. <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="M3 9l9 6l9 -6l-9 -6l-9 6" /><path d="M21 9v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10" /><path d="M3 19l6 -6" /><path d="M15 13l6 6" /></svg>
  573. </span>
  574. <span class="nav-link-title">
  575. Email templates
  576. </span>
  577. </a>
  578. </li>
  579. <li class="nav-item dropdown">
  580. <a class="nav-link dropdown-toggle" href="#navbar-help" data-bs-toggle="dropdown" data-bs-auto-close="outside" role="button" aria-expanded="false" >
  581. <span class="nav-link-icon d-md-none d-lg-inline-block"><!-- Download SVG icon from http://tabler-icons.io/i/lifebuoy -->
  582. <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>
  583. </span>
  584. <span class="nav-link-title">
  585. Help
  586. </span>
  587. </a>
  588. <div class="dropdown-menu">
  589. <a class="dropdown-item" href="https://tabler.io/docs" target="_blank" rel="noopener">
  590. Documentation
  591. </a>
  592. <a class="dropdown-item" href="./changelog.html">
  593. Changelog
  594. </a>
  595. <a class="dropdown-item" href="https://github.com/tabler/tabler" target="_blank" rel="noopener">
  596. Source code
  597. </a>
  598. <a class="dropdown-item text-pink" href="https://github.com/sponsors/codecalm" target="_blank" rel="noopener">
  599. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  600. <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>
  601. Sponsor project!
  602. </a>
  603. </div>
  604. </li>
  605. </ul>
  606. <div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
  607. <form action="./" method="get" autocomplete="off" novalidate>
  608. <div class="input-icon">
  609. <span class="input-icon-addon">
  610. <!-- Download SVG icon from http://tabler-icons.io/i/search -->
  611. <svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" /><path d="M21 21l-6 -6" /></svg>
  612. </span>
  613. <input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
  614. </div>
  615. </form>
  616. </div>
  617. </div>
  618. </div>
  619. </div>
  620. </header>
  621. <div class="page-wrapper">
  622. <!-- Page header -->
  623. <div class="page-header d-print-none">
  624. <div class="container-xl">
  625. <div class="row g-2 align-items-center">
  626. <div class="col">
  627. <h2 class="page-title">
  628. Music components
  629. </h2>
  630. </div>
  631. </div>
  632. </div>
  633. </div>
  634. <!-- Page body -->
  635. <div class="page-body">
  636. <div class="container-xl">
  637. <div class="row">
  638. <div class="col-lg-8">
  639. <div class="card">
  640. <div class="list-group card-list-group">
  641. <div class="list-group-item">
  642. <div class="row g-2 align-items-center">
  643. <div class="col-auto fs-3">
  644. 1
  645. </div>
  646. <div class="col-auto">
  647. <img src="./static/tracks/a4fb1d293bd8d3fd38352418c50fcf1369a7a87d.jpg" class="rounded" alt="Górą ty" width="40" height="40">
  648. </div>
  649. <div class="col">
  650. Górą ty
  651. <div class="text-secondary">
  652. GOLEC UORKIESTRA,
  653. Gromee,
  654. Bedoes
  655. </div>
  656. </div>
  657. <div class="col-auto text-secondary">
  658. 03:41
  659. </div>
  660. <div class="col-auto">
  661. <a href="#" class="link-secondary">
  662. <button class="switch-icon" data-bs-toggle="switch-icon">
  663. <span class="switch-icon-a text-muted">
  664. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  665. <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="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>
  666. </span>
  667. <span class="switch-icon-b text-red">
  668. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  669. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  670. </span>
  671. </button>
  672. </a>
  673. </div>
  674. <div class="col-auto lh-1">
  675. <div class="dropdown">
  676. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  677. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  678. </a>
  679. <div class="dropdown-menu dropdown-menu-end">
  680. <a class="dropdown-item" href="#">
  681. Action
  682. </a>
  683. <a class="dropdown-item" href="#">
  684. Another action
  685. </a>
  686. </div>
  687. </div>
  688. </div>
  689. </div>
  690. </div>
  691. <div class="list-group-item">
  692. <div class="row g-2 align-items-center">
  693. <div class="col-auto fs-3">
  694. 2
  695. </div>
  696. <div class="col-auto">
  697. <img src="./static/tracks/f04bb6fba32e89475d9981007aff21e13745dec2.jpg" class="rounded" alt="High Life" width="40" height="40">
  698. </div>
  699. <div class="col">
  700. High Life
  701. <div class="text-secondary">
  702. Daft Punk
  703. </div>
  704. </div>
  705. <div class="col-auto text-secondary">
  706. 03:21
  707. </div>
  708. <div class="col-auto">
  709. <a href="#" class="link-secondary">
  710. <button class="switch-icon" data-bs-toggle="switch-icon">
  711. <span class="switch-icon-a text-muted">
  712. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  713. <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="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>
  714. </span>
  715. <span class="switch-icon-b text-red">
  716. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  717. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  718. </span>
  719. </button>
  720. </a>
  721. </div>
  722. <div class="col-auto lh-1">
  723. <div class="dropdown">
  724. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  725. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  726. </a>
  727. <div class="dropdown-menu dropdown-menu-end">
  728. <a class="dropdown-item" href="#">
  729. Action
  730. </a>
  731. <a class="dropdown-item" href="#">
  732. Another action
  733. </a>
  734. </div>
  735. </div>
  736. </div>
  737. </div>
  738. </div>
  739. <div class="list-group-item">
  740. <div class="row g-2 align-items-center">
  741. <div class="col-auto fs-3">
  742. 3
  743. </div>
  744. <div class="col-auto">
  745. <img src="./static/tracks/c3f13b4f7a674abda9aa36fd72fa341e918c0f26.jpg" class="rounded" alt="Houdini" width="40" height="40">
  746. </div>
  747. <div class="col">
  748. Houdini
  749. <div class="text-secondary">
  750. Foster The People
  751. </div>
  752. </div>
  753. <div class="col-auto text-secondary">
  754. 03:23
  755. </div>
  756. <div class="col-auto">
  757. <a href="#" class="link-secondary">
  758. <button class="switch-icon" data-bs-toggle="switch-icon">
  759. <span class="switch-icon-a text-muted">
  760. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  761. <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="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>
  762. </span>
  763. <span class="switch-icon-b text-red">
  764. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  765. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  766. </span>
  767. </button>
  768. </a>
  769. </div>
  770. <div class="col-auto lh-1">
  771. <div class="dropdown">
  772. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  773. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  774. </a>
  775. <div class="dropdown-menu dropdown-menu-end">
  776. <a class="dropdown-item" href="#">
  777. Action
  778. </a>
  779. <a class="dropdown-item" href="#">
  780. Another action
  781. </a>
  782. </div>
  783. </div>
  784. </div>
  785. </div>
  786. </div>
  787. <div class="list-group-item">
  788. <div class="row g-2 align-items-center">
  789. <div class="col-auto fs-3">
  790. 4
  791. </div>
  792. <div class="col-auto">
  793. <img src="./static/tracks/4d4ab714dfca7b9df41d4a02a2c39394ebdeb6b6.jpg" class="rounded" alt="Safe And Sound" width="40" height="40">
  794. </div>
  795. <div class="col">
  796. Safe And Sound
  797. <div class="text-secondary">
  798. Capital Cities
  799. </div>
  800. </div>
  801. <div class="col-auto text-secondary">
  802. 03:12
  803. </div>
  804. <div class="col-auto">
  805. <a href="#" class="link-secondary">
  806. <button class="switch-icon" data-bs-toggle="switch-icon">
  807. <span class="switch-icon-a text-muted">
  808. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  809. <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="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>
  810. </span>
  811. <span class="switch-icon-b text-red">
  812. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  813. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  814. </span>
  815. </button>
  816. </a>
  817. </div>
  818. <div class="col-auto lh-1">
  819. <div class="dropdown">
  820. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  821. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  822. </a>
  823. <div class="dropdown-menu dropdown-menu-end">
  824. <a class="dropdown-item" href="#">
  825. Action
  826. </a>
  827. <a class="dropdown-item" href="#">
  828. Another action
  829. </a>
  830. </div>
  831. </div>
  832. </div>
  833. </div>
  834. </div>
  835. <div class="list-group-item">
  836. <div class="row g-2 align-items-center">
  837. <div class="col-auto fs-3">
  838. 5
  839. </div>
  840. <div class="col-auto">
  841. <img src="./static/tracks/79b2422b467ad20c07576e8f8f5f2f1692ac7142.jpg" class="rounded" alt="Partied Out" width="40" height="40">
  842. </div>
  843. <div class="col">
  844. Partied Out
  845. <div class="text-secondary">
  846. Con Bro Chill
  847. </div>
  848. </div>
  849. <div class="col-auto text-secondary">
  850. 03:17
  851. </div>
  852. <div class="col-auto">
  853. <a href="#" class="link-secondary">
  854. <button class="switch-icon" data-bs-toggle="switch-icon">
  855. <span class="switch-icon-a text-muted">
  856. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  857. <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="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>
  858. </span>
  859. <span class="switch-icon-b text-red">
  860. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  861. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  862. </span>
  863. </button>
  864. </a>
  865. </div>
  866. <div class="col-auto lh-1">
  867. <div class="dropdown">
  868. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  869. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  870. </a>
  871. <div class="dropdown-menu dropdown-menu-end">
  872. <a class="dropdown-item" href="#">
  873. Action
  874. </a>
  875. <a class="dropdown-item" href="#">
  876. Another action
  877. </a>
  878. </div>
  879. </div>
  880. </div>
  881. </div>
  882. </div>
  883. <div class="list-group-item">
  884. <div class="row g-2 align-items-center">
  885. <div class="col-auto fs-3">
  886. 6
  887. </div>
  888. <div class="col-auto">
  889. <img src="./static/tracks/aac97056fc02fe02c7e95f7ff77a07c6e82f7d6e.jpg" class="rounded" alt="Runaway (U &amp; I)" width="40" height="40">
  890. </div>
  891. <div class="col">
  892. Runaway (U & I)
  893. <div class="text-secondary">
  894. Galantis
  895. </div>
  896. </div>
  897. <div class="col-auto text-secondary">
  898. 03:47
  899. </div>
  900. <div class="col-auto">
  901. <a href="#" class="link-secondary">
  902. <button class="switch-icon" data-bs-toggle="switch-icon">
  903. <span class="switch-icon-a text-muted">
  904. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  905. <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="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>
  906. </span>
  907. <span class="switch-icon-b text-red">
  908. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  909. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  910. </span>
  911. </button>
  912. </a>
  913. </div>
  914. <div class="col-auto lh-1">
  915. <div class="dropdown">
  916. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  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="M5 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  918. </a>
  919. <div class="dropdown-menu dropdown-menu-end">
  920. <a class="dropdown-item" href="#">
  921. Action
  922. </a>
  923. <a class="dropdown-item" href="#">
  924. Another action
  925. </a>
  926. </div>
  927. </div>
  928. </div>
  929. </div>
  930. </div>
  931. <div class="list-group-item">
  932. <div class="row g-2 align-items-center">
  933. <div class="col-auto fs-3">
  934. 7
  935. </div>
  936. <div class="col-auto">
  937. <img src="./static/tracks/859337f0eaa49b1ad6ed76719b7c1ae26d6412c8.jpg" class="rounded" alt="Light It Up (feat. Nyla &amp; Fuse ODG) - Remix" width="40" height="40">
  938. </div>
  939. <div class="col">
  940. Light It Up (feat. Nyla & Fuse ODG) - Remix
  941. <div class="text-secondary">
  942. Major Lazer,
  943. Nyla,
  944. Fuse ODG
  945. </div>
  946. </div>
  947. <div class="col-auto text-secondary">
  948. 02:46
  949. </div>
  950. <div class="col-auto">
  951. <a href="#" class="link-secondary">
  952. <button class="switch-icon" data-bs-toggle="switch-icon">
  953. <span class="switch-icon-a text-muted">
  954. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  955. <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="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>
  956. </span>
  957. <span class="switch-icon-b text-red">
  958. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  959. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  960. </span>
  961. </button>
  962. </a>
  963. </div>
  964. <div class="col-auto lh-1">
  965. <div class="dropdown">
  966. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  967. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  968. </a>
  969. <div class="dropdown-menu dropdown-menu-end">
  970. <a class="dropdown-item" href="#">
  971. Action
  972. </a>
  973. <a class="dropdown-item" href="#">
  974. Another action
  975. </a>
  976. </div>
  977. </div>
  978. </div>
  979. </div>
  980. </div>
  981. <div class="list-group-item">
  982. <div class="row g-2 align-items-center">
  983. <div class="col-auto fs-3">
  984. 8
  985. </div>
  986. <div class="col-auto">
  987. <img src="./static/tracks/2e7357491deb8a6796ee8d9181ca9ea1f407bb5f.jpg" class="rounded" alt="Hangover" width="40" height="40">
  988. </div>
  989. <div class="col">
  990. Hangover
  991. <div class="text-secondary">
  992. Taio Cruz,
  993. Flo Rida
  994. </div>
  995. </div>
  996. <div class="col-auto text-secondary">
  997. 04:04
  998. </div>
  999. <div class="col-auto">
  1000. <a href="#" class="link-secondary">
  1001. <button class="switch-icon" data-bs-toggle="switch-icon">
  1002. <span class="switch-icon-a text-muted">
  1003. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1004. <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="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>
  1005. </span>
  1006. <span class="switch-icon-b text-red">
  1007. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1008. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  1009. </span>
  1010. </button>
  1011. </a>
  1012. </div>
  1013. <div class="col-auto lh-1">
  1014. <div class="dropdown">
  1015. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  1016. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  1017. </a>
  1018. <div class="dropdown-menu dropdown-menu-end">
  1019. <a class="dropdown-item" href="#">
  1020. Action
  1021. </a>
  1022. <a class="dropdown-item" href="#">
  1023. Another action
  1024. </a>
  1025. </div>
  1026. </div>
  1027. </div>
  1028. </div>
  1029. </div>
  1030. <div class="list-group-item">
  1031. <div class="row g-2 align-items-center">
  1032. <div class="col-auto fs-3">
  1033. 9
  1034. </div>
  1035. <div class="col-auto">
  1036. <img src="./static/tracks/c976bfc96d5e44820e553a16a6097cd02a61fd2f.jpg" class="rounded" alt="Shape of You" width="40" height="40">
  1037. </div>
  1038. <div class="col">
  1039. Shape of You
  1040. <div class="text-secondary">
  1041. Ed Sheeran
  1042. </div>
  1043. </div>
  1044. <div class="col-auto text-secondary">
  1045. 03:53
  1046. </div>
  1047. <div class="col-auto">
  1048. <a href="#" class="link-secondary">
  1049. <button class="switch-icon" data-bs-toggle="switch-icon">
  1050. <span class="switch-icon-a text-muted">
  1051. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1052. <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="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>
  1053. </span>
  1054. <span class="switch-icon-b text-red">
  1055. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1056. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  1057. </span>
  1058. </button>
  1059. </a>
  1060. </div>
  1061. <div class="col-auto lh-1">
  1062. <div class="dropdown">
  1063. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  1064. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  1065. </a>
  1066. <div class="dropdown-menu dropdown-menu-end">
  1067. <a class="dropdown-item" href="#">
  1068. Action
  1069. </a>
  1070. <a class="dropdown-item" href="#">
  1071. Another action
  1072. </a>
  1073. </div>
  1074. </div>
  1075. </div>
  1076. </div>
  1077. </div>
  1078. <div class="list-group-item">
  1079. <div class="row g-2 align-items-center">
  1080. <div class="col-auto fs-3">
  1081. 10
  1082. </div>
  1083. <div class="col-auto">
  1084. <img src="./static/tracks/c9a8350feee77e9345eec4155cddc96694803d1a.jpg" class="rounded" alt="Alone" width="40" height="40">
  1085. </div>
  1086. <div class="col">
  1087. Alone
  1088. <div class="text-secondary">
  1089. Alan Walker
  1090. </div>
  1091. </div>
  1092. <div class="col-auto text-secondary">
  1093. 02:41
  1094. </div>
  1095. <div class="col-auto">
  1096. <a href="#" class="link-secondary">
  1097. <button class="switch-icon" data-bs-toggle="switch-icon">
  1098. <span class="switch-icon-a text-muted">
  1099. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1100. <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="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>
  1101. </span>
  1102. <span class="switch-icon-b text-red">
  1103. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1104. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  1105. </span>
  1106. </button>
  1107. </a>
  1108. </div>
  1109. <div class="col-auto lh-1">
  1110. <div class="dropdown">
  1111. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  1112. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  1113. </a>
  1114. <div class="dropdown-menu dropdown-menu-end">
  1115. <a class="dropdown-item" href="#">
  1116. Action
  1117. </a>
  1118. <a class="dropdown-item" href="#">
  1119. Another action
  1120. </a>
  1121. </div>
  1122. </div>
  1123. </div>
  1124. </div>
  1125. </div>
  1126. <div class="list-group-item">
  1127. <div class="row g-2 align-items-center">
  1128. <div class="col-auto fs-3">
  1129. 11
  1130. </div>
  1131. <div class="col-auto">
  1132. <img src="./static/tracks/fe4ee21d30450829e5b172e806b3c1e14ca1e5f3.jpg" class="rounded" alt="Langrennsfar" width="40" height="40">
  1133. </div>
  1134. <div class="col">
  1135. Langrennsfar
  1136. <div class="text-secondary">
  1137. Ylvis
  1138. </div>
  1139. </div>
  1140. <div class="col-auto text-secondary">
  1141. 02:43
  1142. </div>
  1143. <div class="col-auto">
  1144. <a href="#" class="link-secondary">
  1145. <button class="switch-icon" data-bs-toggle="switch-icon">
  1146. <span class="switch-icon-a text-muted">
  1147. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1148. <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="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>
  1149. </span>
  1150. <span class="switch-icon-b text-red">
  1151. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1152. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  1153. </span>
  1154. </button>
  1155. </a>
  1156. </div>
  1157. <div class="col-auto lh-1">
  1158. <div class="dropdown">
  1159. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  1160. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  1161. </a>
  1162. <div class="dropdown-menu dropdown-menu-end">
  1163. <a class="dropdown-item" href="#">
  1164. Action
  1165. </a>
  1166. <a class="dropdown-item" href="#">
  1167. Another action
  1168. </a>
  1169. </div>
  1170. </div>
  1171. </div>
  1172. </div>
  1173. </div>
  1174. <div class="list-group-item">
  1175. <div class="row g-2 align-items-center">
  1176. <div class="col-auto fs-3">
  1177. 12
  1178. </div>
  1179. <div class="col-auto">
  1180. <img src="./static/tracks/f4e96086f44c4dff1758b1fc1338cd88c1b5ce9c.jpg" class="rounded" alt="Skibidi - Romantic Edition" width="40" height="40">
  1181. </div>
  1182. <div class="col">
  1183. Skibidi - Romantic Edition
  1184. <div class="text-secondary">
  1185. Little Big
  1186. </div>
  1187. </div>
  1188. <div class="col-auto text-secondary">
  1189. 03:12
  1190. </div>
  1191. <div class="col-auto">
  1192. <a href="#" class="link-secondary">
  1193. <button class="switch-icon" data-bs-toggle="switch-icon">
  1194. <span class="switch-icon-a text-muted">
  1195. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1196. <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="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>
  1197. </span>
  1198. <span class="switch-icon-b text-red">
  1199. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1200. <svg xmlns="http://www.w3.org/2000/svg" class="icon icon-filled" width="24" height="24" viewBox="0 0 24 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>
  1201. </span>
  1202. </button>
  1203. </a>
  1204. </div>
  1205. <div class="col-auto lh-1">
  1206. <div class="dropdown">
  1207. <a href="#" class="link-secondary" data-bs-toggle="dropdown"><!-- Download SVG icon from http://tabler-icons.io/i/dots -->
  1208. <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 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /><path d="M19 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0" /></svg>
  1209. </a>
  1210. <div class="dropdown-menu dropdown-menu-end">
  1211. <a class="dropdown-item" href="#">
  1212. Action
  1213. </a>
  1214. <a class="dropdown-item" href="#">
  1215. Another action
  1216. </a>
  1217. </div>
  1218. </div>
  1219. </div>
  1220. </div>
  1221. </div>
  1222. </div>
  1223. </div>
  1224. </div>
  1225. <div class="col-lg-4">
  1226. <h3 class="mb-3">Top tracks</h3>
  1227. <div class="row row-cards">
  1228. <div class="col-md-6 col-lg-12">
  1229. <div class="card">
  1230. <div class="row row-0">
  1231. <div class="col-auto">
  1232. <img src="./static/tracks/c976bfc96d5e44820e553a16a6097cd02a61fd2f.jpg" class="rounded-start" alt="Shape of You" width="80" height="80">
  1233. </div>
  1234. <div class="col">
  1235. <div class="card-body">
  1236. Shape of You
  1237. <div class="text-secondary">
  1238. Ed Sheeran
  1239. </div>
  1240. </div>
  1241. </div>
  1242. </div>
  1243. </div>
  1244. </div>
  1245. <div class="col-md-6 col-lg-12">
  1246. <div class="card">
  1247. <div class="row row-0">
  1248. <div class="col-auto">
  1249. <img src="./static/tracks/c9a8350feee77e9345eec4155cddc96694803d1a.jpg" class="rounded-start" alt="Alone" width="80" height="80">
  1250. </div>
  1251. <div class="col">
  1252. <div class="card-body">
  1253. Alone
  1254. <div class="text-secondary">
  1255. Alan Walker
  1256. </div>
  1257. </div>
  1258. </div>
  1259. </div>
  1260. </div>
  1261. </div>
  1262. <div class="col-md-6 col-lg-12">
  1263. <div class="card">
  1264. <div class="row row-0">
  1265. <div class="col-auto">
  1266. <img src="./static/tracks/fe4ee21d30450829e5b172e806b3c1e14ca1e5f3.jpg" class="rounded-start" alt="Langrennsfar" width="80" height="80">
  1267. </div>
  1268. <div class="col">
  1269. <div class="card-body">
  1270. Langrennsfar
  1271. <div class="text-secondary">
  1272. Ylvis
  1273. </div>
  1274. </div>
  1275. </div>
  1276. </div>
  1277. </div>
  1278. </div>
  1279. <div class="col-md-6 col-lg-12">
  1280. <div class="card">
  1281. <div class="row row-0">
  1282. <div class="col-auto">
  1283. <img src="./static/tracks/f4e96086f44c4dff1758b1fc1338cd88c1b5ce9c.jpg" class="rounded-start" alt="Skibidi - Romantic Edition" width="80" height="80">
  1284. </div>
  1285. <div class="col">
  1286. <div class="card-body">
  1287. Skibidi - Romantic Edition
  1288. <div class="text-secondary">
  1289. Little Big
  1290. </div>
  1291. </div>
  1292. </div>
  1293. </div>
  1294. </div>
  1295. </div>
  1296. <div class="col-md-6 col-lg-12">
  1297. <div class="card">
  1298. <div class="row row-0">
  1299. <div class="col-auto">
  1300. <img src="./static/tracks/73f4938130140174efb1cc0a82ececb277e40932.jpg" class="rounded-start" alt="Miracle" width="80" height="80">
  1301. </div>
  1302. <div class="col">
  1303. <div class="card-body">
  1304. Miracle
  1305. <div class="text-secondary">
  1306. Caravan Palace
  1307. </div>
  1308. </div>
  1309. </div>
  1310. </div>
  1311. </div>
  1312. </div>
  1313. <div class="col-md-6 col-lg-12">
  1314. <div class="card">
  1315. <div class="row row-0">
  1316. <div class="col-auto">
  1317. <img src="./static/tracks/cfb2a532996512eff95c4b0d566d067384aaa441.jpg" class="rounded-start" alt="Different World (feat. CORSAK)" width="80" height="80">
  1318. </div>
  1319. <div class="col">
  1320. <div class="card-body">
  1321. Different World (feat. CORSAK)
  1322. <div class="text-secondary">
  1323. Alan Walker,
  1324. K-391,
  1325. Sofia Carson,
  1326. CORSAK
  1327. </div>
  1328. </div>
  1329. </div>
  1330. </div>
  1331. </div>
  1332. </div>
  1333. </div>
  1334. </div>
  1335. </div>
  1336. </div>
  1337. </div>
  1338. <footer class="footer footer-transparent d-print-none">
  1339. <div class="container-xl">
  1340. <div class="row text-center align-items-center flex-row-reverse">
  1341. <div class="col-lg-auto ms-lg-auto">
  1342. <ul class="list-inline list-inline-dots mb-0">
  1343. <li class="list-inline-item"><a href="https://tabler.io/docs" target="_blank" class="link-secondary" rel="noopener">Documentation</a></li>
  1344. <li class="list-inline-item"><a href="./license.html" class="link-secondary">License</a></li>
  1345. <li class="list-inline-item"><a href="https://github.com/tabler/tabler" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
  1346. <li class="list-inline-item">
  1347. <a href="https://github.com/sponsors/codecalm" target="_blank" class="link-secondary" rel="noopener">
  1348. <!-- Download SVG icon from http://tabler-icons.io/i/heart -->
  1349. <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>
  1350. Sponsor
  1351. </a>
  1352. </li>
  1353. </ul>
  1354. </div>
  1355. <div class="col-12 col-lg-auto mt-3 mt-lg-0">
  1356. <ul class="list-inline list-inline-dots mb-0">
  1357. <li class="list-inline-item">
  1358. Copyright &copy; 2023
  1359. <a href="." class="link-secondary">Tabler</a>.
  1360. All rights reserved.
  1361. </li>
  1362. <li class="list-inline-item">
  1363. <a href="./changelog.html" class="link-secondary" rel="noopener">
  1364. v1.0.0-beta20
  1365. </a>
  1366. </li>
  1367. </ul>
  1368. </div>
  1369. </div>
  1370. </div>
  1371. </footer>
  1372. </div>
  1373. </div>
  1374. <!-- Libs JS -->
  1375. <!-- Tabler Core -->
  1376. <script src="./dist/js/tabler.min.js?1692870487" defer></script>
  1377. <script src="./dist/js/demo.min.js?1692870487" defer></script>
  1378. </body>
  1379. </html>