module uim.bootstrap.bs5.classes.apps.app;

import uim.bootstrap;

class DBS5App : DH5App {
	this() { super(); }
	this(string aName) { super(aName); }
	this(string aName, string aRootPath) { super(aName, aRootPath); }
// 	this(string aName, string aRootPath, string[string] someParameters) { super(aName, aRootPath, parameters); }

  override void init() {
    this
    .styles(["href":"/lib/bootstrap/5.0.0-beta1/css/bootstrap.min.css", "rel":"stylesheet"])
    .scripts(
      ["src":"/lib/bootstrap/5.0.0-beta1/js/bootstrap.bundle.min.js"]);
  }
}
auto BS5App() { return new DBS5App; }
auto BS5App(string aName) { return new DBS5App(aName); }
auto BS5App(string aName, string aRootPath) { return new DBS5App(aName, aRootPath); }