diff --git a/site/config/config.php b/site/config/config.php
index c08cc5d..bf52584 100644
--- a/site/config/config.php
+++ b/site/config/config.php
@@ -43,11 +43,6 @@ c::set('plg_masonry.sort', 'sort'); // sortBy parameter: sort, title, etc.
c::set('plg_masonry.dir', 'asc'); // sortBy direction: asc, desc
c::set('plg_masonry.lightbox', 'swipebox');
-// plg-navbar style:
-//c::set('navbar-class', 'navbar-inverse navbar-fixed-top');
-//c::set('navbar-ignoreChildren', true);
-//c::set('navbar-affix', true);
-
// bastians columns.php plugin from https://github.com/getkirby/plugins/tree/master/columns
c::set('columns.container', 'row');
c::set('columns.item', 'col-sm-6 columns');
diff --git a/site/snippets/base/html-end.php b/site/snippets/base/html-end.php
index f904123..7facfef 100644
--- a/site/snippets/base/html-end.php
+++ b/site/snippets/base/html-end.php
@@ -4,44 +4,44 @@
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
+
+// set switches, to enable parts of the code. All disabled by default!
// -------------------------------------------
+
+// available switches:
+$switches = array("bs_util", "bs_collapse", "bs_carousel", "plg_masonry");
+$jquery = false;
+
+foreach ($switches as $switch) {
+ if (isset(${$switch}) && ${$switch}==true) {
+ $jquery = true;
+ ${$switch} = true;
+ }else {
+ ${$switch} = false;
+ }
+}
?>
+
+
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+