New styling and files functionality

This commit is contained in:
2020-04-17 00:50:23 +02:00
parent 4912e56b1b
commit ae1726ce7a
19 changed files with 432 additions and 58 deletions

View File

@ -41,6 +41,14 @@ namespace Seenginx.Pages
{
if (filter == "All")
ConfigFiles.ForEach(f => f.Unhide());
else if (filter == "Root")
ConfigFiles.ForEach(f =>
{
if (f.Folder == FilterFolder[filter])
f.Unhide();
else
f.Hide();
});
else
ConfigFiles.ForEach(f =>
{

View File

@ -25,7 +25,7 @@
<link rel="stylesheet" href="~/css/main.css" asp-append-version="true" />
</environment>
</head>
<body>
<body class="gradientBackground">
<app>
<component type="typeof(App)" render-mode="ServerPrerendered" />
</app>