#4 Meta and other Tags in header
IPageService to Set Headers / Meta etc.
This page sets the title, description, keywords and some manual tags to the header.
Look at the resulting output-source to see the effect.
Info about the Base Class
This tutorial inherits from the Custom.Hybrid.Razor14 base class.
This allows us to use Kit.Page to access IPageService without having to use GetService<>
@{
// prefix the current title, description and keywords with additional values
Kit.Page.AddToHead("<meta xyz>");
Kit.Page.AddMeta("somename", "somevalue");
}
#4 Meta and other Tags in header
@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
IPageService to Set Headers / Meta etc.... <!-- unimportant stuff, hidden -->
@Html.Partial("../shared/_KitBaseClassInfoBox.cshtml", new { ServiceName = "Page", Service = "IPageService" })
@{
// prefix the current title, description and keywords with additional values
Kit.Page.AddToHead("<meta xyz>");
Kit.Page.AddMeta("somename", "somevalue");
}
<!-- unimportant stuff, hidden -->