add theme creator module to simplify the scaffolding of external themes
This commit is contained in:
15
Oqtane.Server/wwwroot/Themes/Templates/External/Client/ThemeInfo.cs
vendored
Normal file
15
Oqtane.Server/wwwroot/Themes/Templates/External/Client/ThemeInfo.cs
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
using Oqtane.Models;
|
||||
using Oqtane.Themes;
|
||||
|
||||
namespace [Owner].[Theme]
|
||||
{
|
||||
public class ThemeInfo : ITheme
|
||||
{
|
||||
public Theme Theme => new Theme
|
||||
{
|
||||
Name = "[Theme]",
|
||||
Version = "1.0.0"
|
||||
};
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user