@namespace Oqtane.Themes.BlazorTheme @inherits ThemeBase
@code { public override string Panes => PaneNames.Admin; public override List Resources => new List() { // obtained from https://cdnjs.com/libraries new Stylesheet(Constants.BootstrapStylesheetUrl, Constants.BootstrapStylesheetIntegrity, "anonymous"), new Stylesheet(ThemePath() + "Theme.css"), new Script(Constants.BootstrapScriptUrl, Constants.BootstrapScriptIntegrity, "anonymous") }; }