Skip to main content
Home  › ... 2sxc Apps

Razor Blade Tutorials

Tutorial Home

RazorBlade set Base tag in header

Info about the Base Class

This tutorial inherits from the Custom.Hybrid.Razor14 base class.

This allows us to use Kit.Scrub to access IScrub without having to use GetService<>

This page sets the Base tag in the header. Look at the source of this page to see the result.
There are two ways to do this:
Requirements
Resources
  • Kit.Page.SetBase() will auto-detect the current base. It's extra smart, so the result will also work on the home page of a portal.
  • Kit.Page.SetBase("/some/page") create the base tag with the specified url.

Source Code of this file

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 -->
RazorBlade set Base tag in header... <!-- unimportant stuff, hidden -->

@if (CmsContext.Platform.Name == "Oqtane") {
  Html.Partial("../shared/_MessageOqtaneDisabled.cshtml");
} else {
  Kit.Page.SetBase();
}

<!-- unimportant stuff, hidden -->