Hi DynamicWeb,
I am trying to render meta tags for description, keywords in my Master. I would like to pull existing data from page properties from Admin.
First issue that I confronted is that when I put description meta tag in head section like below (with all lower case letters) it wont render at all in HTML:
<meta name="description" content="...." />
How can i get meta tags from PageView object?
I tried something similiar like this @Dynamicweb.Frontend.PageView.Current().Meta.Title but with no success.
Also I tried using PageTemplateExtender to get meta tags from page but could not find a way. As I can see there is only method for adding custom tags:
this.PageView.Meta.Add("description", "test description");
Could you please advise how to retrieve meta tags from page properties?
Thanks