The result is invisible, check the html headers in the source of this page.
@{
// use url parameter to decide which icon(s) to show, and default to "set"
var mode = CmsContext.Page.Parameters["mode"] ?? "set";
// the icon we want to use for this page is this png file
var iconUrl = App.Path + "/blade/assets/razor-blade-icon.png";
// now add the headers depending on the demo you picked
// in your code you would only use one of these
if (mode == "one") {
Kit.Page.AddIcon(iconUrl);
}
else if (mode == "set") {
Kit.Page.AddIconSet(iconUrl);
}
else if (mode == "nofav") {
Kit.Page.AddIconSet(iconUrl, favicon: false);
}
else if (mode == "pngfav") {
Kit.Page.AddIconSet(iconUrl, favicon: iconUrl);
}
}
@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>RazorBlade</em> AddIcon to Html Headers</h2>
@Html.Partial("MessageDnnOnlyUseIPageService.cshtml")
@Html.Partial("../shared/KitBaseClassInfoBox.cshtml", new { ServiceName = "Scrub", Service = "IScrub" })
<div>
This page sets various icon headers according to best practices.
Look at the html-header in the output-source to see the effect. <br>
The following links will set different icons depending on what you need.
</div>
<ul>
@SubpageLink("Just add single icon", "one")
@SubpageLink("Add default set incl. favicon and apple-touch", "set")
@SubpageLink("Add default set without favicon", "nofav")
@SubpageLink("Add default set with custom favicon (recommended)", "pngfav")
</ul>
</div>
</div>
@if (CmsContext.Platform.Name == "Oqtane") {
@Html.Partial("../shared/MessageOqtaneDisabled.cshtml")
} else {
<text>
@{
// use url parameter to decide which icon(s) to show, and default to "set"
var mode = CmsContext.Page.Parameters["mode"] ?? "set";
// the icon we want to use for this page is this png file
var iconUrl = App.Path + "/blade/assets/razor-blade-icon.png";
// now add the headers depending on the demo you picked
// in your code you would only use one of these
if (mode == "one") {
Kit.Page.AddIcon(iconUrl);
}
else if (mode == "set") {
Kit.Page.AddIconSet(iconUrl);
}
else if (mode == "nofav") {
Kit.Page.AddIconSet(iconUrl, favicon: false);
}
else if (mode == "pngfav") {
Kit.Page.AddIconSet(iconUrl, favicon: iconUrl);
}
}
</text>
}
<!-- unimportant stuff, hidden -->
@* Footer *@
@Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })