I was able to get this for Component Template Metadata using the following code:
@foreach (var cp in ComponentPresentations) {
@if (cp.Template.Metadata != null && cp.Template.Metadata["position"] != null){
@Debug(string.Format("The Component Template position is {0}", cp.Template.Metadata["position"].InnerText))
@if (cp.Template.Metadata["position"].InnerText.ToLower().Equals("main")){
@cp.RenderComponentPresentation()
}
}
}
Therefore, I think that you should be able to use something similar to the following:
@if (Page.Template.Metadata != null && Page.Template.Metadata["content_grid"] != null){
@Debug(string.Format("The content_grid value is {0}", Page.Template.Metadata["content_grid"].InnerText))
<div class="@Page.Template.Metadata["content_grid"].InnerText">
</div>
}
Please note the .InnerText and not .Value as the content_grid is returned as xml. In my code 'position' was just a string. I guess that this may be different if you're using taxonomy.
Thanks,
Jonathan
P.S. I am using version 1.2 of the Razor Mediator