Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
using System; | |
using umbraco.BusinessLogic; | |
using umbraco.cms.presentation.Trees; | |
public class SecrectContent : ApplicationBase | |
{ | |
public SecrectContent() | |
{ | |
BaseContentTree.AfterNodeRender += BaseContentTree_AfterNodeRender; | |
} |
/// <summary> | |
/// Represents a domain | |
/// </summary> | |
public class Domain | |
{ | |
/// <summary> | |
/// Gets the unique domain id | |
/// </summary> | |
public int DomainId { get; set; } | |