This commit is contained in:
boyska 2023-09-14 00:34:55 +01:00
parent 3d0ac08488
commit 67fb372516
2 changed files with 44 additions and 41 deletions

View file

@ -1,24 +1,27 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<style> <style>
.info {border: 1px solid gray; max-width: 20em; padding: 0.3em; font-family: monospace;} .info {
</style> border: 1px solid gray;
</head> max-width: 20em;
<body> padding: 0.3em;
Ciao font-family: monospace;
<script src="libs/ical.min.js"></script> }
<script src="dist/radiomanifest-oldstyle.bundle.js"></script> </style>
<script src="ui.js"></script> </head>
<div id="player"> <body>
<audio controls> Ciao
</audio> <script src="libs/ical.min.js"></script>
<div class="info" id="now-info"></div> <script src="dist/radiomanifest-oldstyle.bundle.js"></script>
</div> <script src="ui.js"></script>
<div class="info" id="show-info"> </div> <div id="player">
<div id="shows"> <audio controls></audio>
<ul> <div class="info" id="now-info"></div>
</ul>
</div> </div>
</body> <div class="info" id="show-info"></div>
<div id="shows">
<ul></ul>
</div>
</body>
</html> </html>

View file

@ -1,24 +1,24 @@
{ {
"plugins": ["plugins/markdown.js"], "plugins": ["plugins/markdown.js"],
"opts": { "opts": {
"template": "node_modules/docdash", "template": "node_modules/docdash",
"encoding": "utf8", "encoding": "utf8",
"destination": "./docs" "destination": "./docs"
}, },
"templates": { "templates": {
"default": { "default": {
"includeDate": false "includeDate": false
}
},
"docdash": {
"static": true,
"sort": true,
"search": true,
"collapse": true,
"typedefs": false,
"private": false,
"navLevel": 0,
"removeQuotes": "none",
"scripts": []
} }
},
"docdash": {
"static": true,
"sort": true,
"search": true,
"collapse": true,
"typedefs": false,
"private": false,
"navLevel": 0,
"removeQuotes": "none",
"scripts": []
}
} }