Products

Solutions

Resources

Partners

Community

About

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

The Community Blog is a personal opinion of community members and by no means the official standpoint of DNN Corp or DNN Platform. This is a place to express personal thoughts about DNNPlatform, the community and its ecosystem. Do you have useful information that you would like to share with the DNN Community in a featured article or blog? If so, please contact .

The use of the Community Blog is covered by our Community Blog Guidelines - please read before commenting or posting.


New Multi-Bootstrap Content-Templates with Koi - explained with best practices

The new default content templates now support Bootstrap 3 and 4 at the same time, thanks to Koi.

The Result

Now when a user of 2sxc 9.22 (which includes Koi 1.03) or higher, the installation dialog will look like this: 

When these are installed, the content will automatically look right - for example in DNN Contra (Bootstrap 4):

...or with this demo Bootstrap 3 theme:

Here even an example using the old standard DNN Gravity-theme:

The great thing about it is that it works perfectly with just about any CSS Framework - or even if no CSS Framework in installed. Here's how it works:

4 Scenarios Supported

The following scenarios are covered, and handled differently:

Bootstrap 3 With koi.json

If the theme/skin has Bootstrap 3 and includes a Koi.json in the theme-folder publishing the information, this happens:

  1. Bootstrap 3 is auto-detected
  2. no additional Bootstrap 3 is loaded from any CDN
  3. the bs3.css is loaded with the necessary styles
  4. all class attributes contain thecorrect Bootstrap 3 styles

...and everything works!

Bootstrap 4 with koi.json

This behaves exactly like Bootstrap 3, so all the correct parts are included (bs4.css) and the full Bootstrap isn't loaded from the CDN, and everything works. 

All Scenarios without koi.json

In case a theme doesn't communicate the framework - which is often the case on existing themes - it will behave as follows:

  1. situation "unknown" is auto-detected
  2. Bootstrap 4 is automatically loaded from a CDN
  3. the remaining behavior is treated as if it were Bootstrap4

...and everything works! Logged-in admin users are also informed that this happened, and are urged to add a koi.json to the theme-file, because it would then not need to load Bootstrap 4 from a CDN. 

Other CSS Frameworks with koi.json

If other css-frameworks are used - like Foundation 6 - the situation "other" is auto-detected, and the behaviour is the same as a missing koi.json, just without the admin-warning. 

How It's Done - Best Practices

Based on our development experience, we believe this is the best way to do it, and recommend a similar setup for your Multi-CSS implementations. Here are the code-snippets you'll find in the Razor templates, which have these effects:

    Include bs3.css or bs4.css (fallback is also bs4.css)

    <!-- from https://github.com/2sic/2sxc-content-app/blob/master/_Shared%20-%20Assets.cshtml -->
    
    <link rel="stylesheet" 
      href="@App.Path/dist/@(Koi.PickCss("bs3,bs4", "bs4")).css" 
      data-enableoptimizations="true" />

      Provide different class-attribute, based on framework

      <!-- 
        from https://github.com/2sic/2sxc-content-app/blob/master/_Link%20-%20List%20of%20icon-links.cshtml#L20
        line breaks added for readibility
      -->
      
      <div @Koi.Class("
          all='sc-element' 
          bs3='col col-xs-12 col-sm-6 col-md-4 sync-height-with-neighbors' 
          bs4,oth='col-12 col-md-6 col-lg-4'")
      >

        Include Bootstrap 4 from CDN if not Bootstrap3/4

        // from https://github.com/2sic/2sxc-content-app/blob/master/_Shared%20-%20Assets.cshtml
        
        @if(!Koi.Is("bs3,bs4")) 
        {
          <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css' 
            integrity='sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm' 
            crossorigin='anonymous' data-enableoptimizations="true" >
          <script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js' 
            integrity='sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl' 
            crossorigin='anonymous' data-enableoptimizations="true" ></script>
        }

        So Why Bother?

        You may ask yourself, why bother. We could just provide two different sets of templates, or we could just switch to Bootstrap 4 all the way. Here's why:

        1. If a site has different pages using different themes, this will still work
        2. If a site start with Bootstrap 3 today, and upgrades the theme to Bootstrap 4 tomorrow, it will magically just continue to work
        3. If a site tries out a Bootstrap 3 theme, and decides to ditch it for something else, everything still works
        4. Whatever we install today, should be future-proof, and this makes it possible
        5. If we support more frameworks later, the entire setup already works

        So basically the goal is: to matter what people are doing, this should just continue to work - like magic. And in the long run, maintaining one set of templates is more efficient than multiple sets. 

        Install or get the Code from Github

        To install it, it will always be the recommended install on 2sxc 9.22. If you want to discover the code, check out the new github repo 2sxc-content-app.

        We Love it - Hope You Love It Too!

        With love from Switzerland,
        Daniel, Tom and Luca


        Daniel Mettler grew up in the jungles of Indonesia and is founder and CEO of 2sic internet solutions in Switzerland and Liechtenstein, an 20-head web specialist with over 800 DNN projects since 1999. He is also chief architect of 2sxc (see github), an open source module for creating attractive content and DNN Apps.



        Read more posts by Daniel Mettler

        Comments

        There are currently no comments, be the first to post one.

        Comment Form

        Only registered users may post comments.

        NewsArchives


        Aderson Oliveira (22)
        Alec Whittington (11)
        Alessandra Daniels (3)
        Alex Shirley (10)
        Andrew Hoefling (3)
        Andrew Nurse (30)
        Andy Tryba (1)
        Anthony Glenwright (5)
        Antonio Chagoury (28)
        Ash Prasad (37)
        Ben Schmidt (1)
        Benjamin Hermann (25)
        Benoit Sarton (9)
        Beth Firebaugh (12)
        Bill Walker (36)
        Bob Kruger (5)
        Bogdan Litescu (1)
        Brian Dukes (2)
        Brice Snow (1)
        Bruce Chapman (20)
        Bryan Andrews (1)
        cathal connolly (55)
        Charles Nurse (163)
        Chris Hammond (213)
        Chris Paterra (55)
        Clint Patterson (108)
        Cuong Dang (21)
        Daniel Bartholomew (2)
        Daniel Mettler (181)
        Daniel Valadas (48)
        Dave Buckner (2)
        David Poindexter (12)
        David Rodriguez (3)
        Dennis Shiao (1)
        Doug Howell (11)
        Erik van Ballegoij (30)
        Ernst Peter Tamminga (80)
        Francisco Perez Andres (17)
        Geoff Barlow (12)
        George Alatrash (12)
        Gifford Watkins (3)
        Gilles Le Pigocher (3)
        Ian Robinson (7)
        Israel Martinez (17)
        Jan Blomquist (2)
        Jan Jonas (3)
        Jaspreet Bhatia (1)
        Jenni Merrifield (6)
        Joe Brinkman (274)
        John Mitchell (1)
        Jon Henning (14)
        Jonathan Sheely (4)
        Jordan Coopersmith (1)
        Joseph Craig (2)
        Kan Ma (1)
        Keivan Beigi (3)
        Kelly Ford (4)
        Ken Grierson (10)
        Kevin Schreiner (6)
        Leigh Pointer (31)
        Lorraine Young (60)
        Malik Khan (1)
        Matt Rutledge (2)
        Matthias Schlomann (16)
        Mauricio Márquez (5)
        Michael Doxsey (7)
        Michael Tobisch (3)
        Michael Washington (202)
        Miguel Gatmaytan (3)
        Mike Horton (19)
        Mitchel Sellers (40)
        Nathan Rover (3)
        Navin V Nagiah (14)
        Néstor Sánchez (31)
        Nik Kalyani (14)
        Oliver Hine (1)
        Patricio F. Salinas (1)
        Patrick Ryan (1)
        Peter Donker (54)
        Philip Beadle (135)
        Philipp Becker (4)
        Richard Dumas (22)
        Robert J Collins (5)
        Roger Selwyn (8)
        Ruben Lopez (1)
        Ryan Martinez (1)
        Sacha Trauwaen (1)
        Salar Golestanian (4)
        Sanjay Mehrotra (9)
        Scott McCulloch (1)
        Scott Schlesier (11)
        Scott Wilkinson (3)
        Scott Willhite (97)
        Sebastian Leupold (80)
        Shaun Walker (237)
        Shawn Mehaffie (17)
        Stefan Cullmann (12)
        Stefan Kamphuis (12)
        Steve Fabian (31)
        Steven Fisher (1)
        Tony Henrich (3)
        Torsten Weggen (3)
        Tycho de Waard (4)
        Vicenç Masanas (27)
        Vincent Nguyen (3)
        Vitaly Kozadayev (6)
        Will Morgenweck (40)
        Will Strohl (180)
        William Severance (5)
        What is Liquid Content?
        Find Out
        What is Liquid Content?
        Find Out
        What is Liquid Content?
        Find Out