@inherits Custom.Hybrid.Razor14
<!-- unimportant stuff, hidden -->
<div @Sys.PageParts.InfoWrapper()>
@Html.Partial("../shared/DefaultInfoSection.cshtml")
<div @Sys.PageParts.InfoIntro()>
<h2>Platform Specific Sub-Razor-Files</h2>
<p>
In some cases it's just simple to provide different <code>cshtml</code> files for each platform.
</p>
<p>
Using <code>CmsContext.Platform.Name</code> you can switch between files using CmsContext.Platform.Name. Here's a simple example.
</p>
</div>
</div>
@Html.Partial("CodeSwitching." + CmsContext.Platform.Name + ".cshtml")
@* Footer *@
@Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })