mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 10:23:39 +02:00
* Use more sensible naming for api responses * Move artist overview into library; closes #50 and #52 * Fix sass live-reload * Move editor config out of shadow-cljs.edn
21 lines
952 B
HTML
21 lines
952 B
HTML
<!doctype html>
|
|
<html class="has-navbar-fixed-top has-navbar-fixed-bottom">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Airsonic</title>
|
|
<link rel="stylesheet" href="./app/app.css">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
|
|
<link rel="manifest" href="./site.webmanifest">
|
|
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#2f7bd9">
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
<meta name="theme-color" content="#ffffff">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="./app/js/main.js"></script>
|
|
<script>airsonic_ui.core.init()</script>
|
|
</body>
|
|
</html>
|