#6 Open-Graph headers for Social Media
IPageService to add Open-Graph Headers
This page sets various open-graph headers.
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<>
@{
// note: 'og:' is auto-prefixed if not given in the key
Kit.Page.AddOpenGraph("title", "Demo of OpenGraph headers");
Kit.Page.AddOpenGraph("type", "website");
}
#6 Open-Graph headers for Social Media
@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
IPageService to add Open-Graph Headers... <!-- unimportant stuff, hidden -->
@Html.Partial("../shared/_KitBaseClassInfoBox.cshtml", new { ServiceName = "Page", Service = "IPageService" })
@{
// note: 'og:' is auto-prefixed if not given in the key
Kit.Page.AddOpenGraph("title", "Demo of OpenGraph headers");
Kit.Page.AddOpenGraph("type", "website");
}
<!-- unimportant stuff, hidden -->