@using Statiq.CodeAnalysis @using Microsoft.AspNetCore.Html @if(Document.GetBool(CodeAnalysisKeys.HasConstantValue)) { var constantValue = Document.Get(CodeAnalysisKeys.ConstantValue);

Constant Value

@(new HtmlString(constantValue?.ToString() ?? "null"))
@(new HtmlString(constantValue?.GetType().Name ?? string.Empty))
}