#1 Page Title, Keyword, Description
IPageService To set Title, Description and Keywords
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 an IPageService
without having to use GetService<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");
}
#1 Page Title, Keyword, Description
@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
<div @Sys.PageParts.InfoWrapper()>
@Html.Partial("../shared/_DefaultInfoSection.cshtml")
<div @Sys.PageParts.InfoIntro()>
<h2><em>IPageService</em> To set Title, Description and Keywords</h2>
<div>
This page sets the title, description, keywords and some manual tags to the header.
Look at the resulting output-source to see the effect.
</div>
</div>
</div>
@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");
}