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<>
@Html.Partial("../shared/_KitBaseClassInfoBox.cshtml", new { ServiceName = "Page", Service = "IPageService" }) @{ // prefix the current title, description and keywords with additional values Kit.Page.SetTitle("Title changed from the razor using Razor Blade! original: "); Kit.Page.SetDescription("Learn to use Razor Blade "); Kit.Page.SetKeywords("Tutorial, Razor, Blade"); }
Below you'll see the source code of the file. Note that we're just showing the main part, and hiding some parts of the file which are not relevant for understanding the essentials. Click to expand the code
@inherits Custom.Hybrid.Razor14 @using ToSic.Razor.Blade; <!-- unimportant stuff, hidden --> IPageService To set Title, Description... <!-- 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.SetTitle("Title changed from the razor using Razor Blade! original: "); Kit.Page.SetDescription("Learn to use Razor Blade "); Kit.Page.SetKeywords("Tutorial, Razor, Blade"); } <!-- unimportant stuff, hidden -->