• Basics
  • Abyss
  • Web APIs
  • C# & Razor
  • .net API
  • JS & TS API

    Show / Hide Table of Contents

    Koi Library

    2sxc includes Koi - a helper library to let components / modules know what CSS framework is used, and use that information to create templates which adjust to that CSS framework.

    Tip

    2sxc 11 introduced Polymorphism which lets you place different editions of a Razor file in folders matching various CSS frameworks. This is easiest way to leverage Koi, and your code doesn't even need to know about it.

    Discover More in the Koi Tutorials

    We have an rich series of Koi tutorials. You should really check them out 👍.

    New Example (requires 2sxc v12)

    2sxc v12 includes Koi 2.0 which uses Dependency Injection. Using this it also works in Oqtane.

    The following example will automatically include Bootstrap4 from a CDN if the theme doesn't already include it.

    @{
      var pageCss = GetService<Connect.Koi.ICss>();
    }
    @if(!pageCss.Is("bs4")) {
      <link rel="stylesheet" 
        href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" 
        integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" 
        crossorigin="anonymous">
    }
    

    Old Example (will only work in Dnn ☢️)

    The following example will automatically include Bootstrap4 from a CDN if the theme doesn't already include it.

    @using Connect.Koi;
    @if(!Koi.Is("bs4")) {
      <link rel="stylesheet" 
        href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" 
        integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" 
        crossorigin="anonymous">
    }
    

    Learn to Leverage RazorBlade

    • Visit Connect-Koi Website
    • Check out the Koi Tutorials
    • Install the default content-templates and discover how it's used there
    • Improve this Doc
    Back to top Generated by DocFX