@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
RazorBlade set Title, Description and... <!-- unimportant stuff, hidden -->
@if(CmsContext.Platform.Name == "Oqtane") {
  @Html.Partial("../shared/_MessageOqtaneDisabled.cshtml")
} else {
  // Note: this only works because we have @using ToSic.Razor.Blade on top
  // Again note that this only works in DNN and is not recommended any more - see warning
  Kit.Page.SetTitle("Title changed from the razor using Razor Blade! original: ");
  Kit.Page.SetDescription("Learn to use Razor Blade");
  Kit.Page.SetDescription("Learn to use Razor Blade");
  Kit.Page.SetKeywords("Tutorial, Razor, Blade");
  Kit.Page.SetKeywords("Tutorial, Razor, Blade");
  Kit.Page.AddToHead("<meta xyz>");
  Kit.Page.AddMeta("somename", "somevalue");
}
<!-- unimportant stuff, hidden -->