added HeadContent property to Site and replaced Meta property on Page with HeadContent property.
This commit is contained in:
		| @ -65,9 +65,9 @@ namespace Oqtane.Models | ||||
|         public string DefaultContainerType { get; set; } | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Meta tags to be included in the head of the page | ||||
|         /// Content to be included in the head of the page | ||||
|         /// </summary> | ||||
|         public string Meta { get; set; } | ||||
|         public string HeadContent { get; set; } | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Icon file for this page. | ||||
|  | ||||
| @ -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; } | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 sbwalker
					sbwalker