webmusic/Pages/plain.cshtml

15 lines
253 B
Plaintext
Raw Normal View History

@page
@model IndexModel
@{
2020-12-21 20:42:29 +01:00
Layout = null;
Response.ContentType = "text/plain";
}
2020-12-21 20:42:29 +01:00
@if (Model.Path.Contains("..")) {
return;
}
2020-12-21 20:42:29 +01:00
@foreach (var dir in Model.Dirs) {
@Html.Raw(dir + "\n")
}
2020-12-21 20:42:29 +01:00
@foreach (var file in Model.Files) {
@Html.Raw(file + "\n")
}