added HeadContent property to Site and replaced Meta property on Page with HeadContent property.

This commit is contained in:
sbwalker
2023-05-16 16:23:07 -04:00
parent 89ada83012
commit 8d2f644177
10 changed files with 346 additions and 281 deletions

View File

@ -79,7 +79,7 @@ namespace Oqtane.Models
public string RenderMode { get; set; }
/// <summary>
/// Keeps track of site configuration changes and is used by the IUpgradeable interface
/// Keeps track of site configuration changes and is used by the ISiteMigration interface
/// </summary>
public string Version { get; set; }
@ -88,6 +88,11 @@ namespace Oqtane.Models
/// </summary>
public int? HomePageId { get; set; }
/// <summary>
/// Content to be included in the head of the page
/// </summary>
public string HeadContent { get; set; }
[NotMapped]
public Dictionary<string, string> Settings { get; set; }