add id to back button, use list elements

This commit is contained in:
Leah 2021-03-06 13:11:46 +01:00
parent 7f7b2d542b
commit 16caa08bba
2 changed files with 11 additions and 5 deletions

View file

@ -16,16 +16,17 @@ else {
@Model.Displaypath <span id="state"></span> <span id="flags"></span>
</h2>
<a class="action-muted">[..]</a>
<a href="?@Model.PathOneup" class="entry-muted cfont"> Go back</a>
<a href="?@Model.PathOneup" id="back" class="entry-muted cfont"> Go back</a>
<br/>
<a class="action-muted">[--]</a>
<a href="/playlist/@(Request.QueryString).m3u" class="entry-muted cfont"> Download playlist</a>
<br/>
<br/>
@foreach (var dir in Model.Dirs) {
<li>
<a class="action" href="#">[--]</a>
<a href="?@Model.Path/@dir"> @dir</a>
<br/>
</li>
}
@foreach (var file in Model.Files) {
var jspath = IndexModel.Encode(Model.Fullpath);
@ -34,6 +35,7 @@ else {
var lrcfile = basename + ".lrc";
var lrcpath = System.IO.Path.Combine(Model.Fullpath, lrcfile);
<li>
<script>queue.push('@Html.Raw(jsfile)')</script>
<a class="action" href="@Html.Raw(IndexModel.Encode(Model.Fullpath + "/" + file))" download>[DL]</a>
@if (System.IO.File.Exists(lrcpath)) {
@ -43,6 +45,6 @@ else {
<a class="action">[---]</a>
}
<a href="#" onclick="playSong('@Html.Raw(jsfile)')"> @file</a>
<br/>
</li>
}
}
}

View file

@ -40,4 +40,8 @@ h2, h2 a {
#container {
margin-left: 10%;
margin-right: 10%;
}
}
li {
list-style: none;
}