webmusic/Pages/plain.cshtml
Laura d9c776e1d1
Initial commit
fix repeat
added simple keyboard control
add preloading tracks
add plain view ("api")
fix memory leak, add streaming
responsive viewport
Mobile web capable
2019-07-06 03:59:58 +02:00

18 lines
233 B
Plaintext

@page
@using System.Web
@model IndexModel
@{
Layout = null;
}
@if (Model.path.Contains(".."))
{
return;
}
@foreach (var dir in Model.dirs)
{
@Html.Raw(dir+"\n")
}
@foreach (var file in Model.files)
{
@Html.Raw(file+"\n")
}