Updated admin page to be more streamlined and added the beginning of the blogging features
This commit is contained in:
11
OpenArchival.Blazor.Config/ApplicationOptions.cs
Normal file
11
OpenArchival.Blazor.Config/ApplicationOptions.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace OpenArchival.Blazor.Config;
|
||||
|
||||
public class ApplicationOptions
|
||||
{
|
||||
public const string Key = "ApplicationOptions";
|
||||
public string NavBarTitle { get; set; } = "";
|
||||
|
||||
public string HomepageContentLocation { get; set; } = "";
|
||||
|
||||
public string AboutPageContentLocation { get; set; } = "";
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user