NAME
   Dancer::Layout::Bootstrap - Boostrap layout for Dancer

SYNOPSIS
     # 1. Copy the included template files to your dancer application
     # 2. Change the "layout" parameter in config.yml to "bootstrap"
     # 3. Dance On!

     # Preview the layout
     plackup -a bin\app.pl

ABSTRACT
   Template and dummy application that applies the Bootstrap CSS to Dancer.

SUPPORTED FEATURES
   If you want to show alerts etc., the main template already provides
   support for that via Dancer::Plugin::FlashMessage.

       flash success => sprintf "Welcome back, %s",
           session('user')->{name};

   ... will produce a nice, green "Welcome back" message for the user.

   All flash message output is HTML escaped for security reasons.

TEMPLATE FILES IN THIS DISTRIBUTION
   The meat of this package are the template and Bootstrap and jQuery
   files. These don't get installed but live in the distribution. You will
   need to copy the following files and directories into your application
   directory, at least until Dancer resp. the `dancer' application comes
   with a way to specify default layouts when generating a new application
   scaffold.

 LIST OF FILES TO COPY
       public/css/bootstrap-responsive.css   Bootstrap 2.0.3
       public/css/bootstrap.css      Bootstrap 2.0.3
       public/css/bootstrap.min.css  Bootstrap 2.0.3
       public/images/glyphicons-halflings-white.png  Glyphicons
       public/images/glyphicons-halflings.png        Bootstrap 2.0.3
       public/javascripts/bootstrap-2.0.3/bootstrap-alert.js Bootstrap 2.0.3
       public/javascripts/bootstrap-2.0.3/bootstrap.js       Bootstrap 2.0.3
       public/javascripts/bootstrap-2.0.3/bootstrap.min.js   Bootstrap 2.0.3
       public/javascripts/jQuery/jquery-1.7.2.min.js jQuery 1.7.2
       public/javascripts/jQuery/jquery.ui.widget.js jQuery 1.7.2
       views/index.tt        Index page with Bootstrap layout
       views/layouts/bootstrap.tt    The Bootstrap layout

NEEDED MODULES
   The simple templating included with Dancer does not properly support
   user log-in / log out, so the template needs Template::Toolkit.

SEE ALSO
   http://twitter.github.com/bootstrap/ - Bootstrap

   http://bootswatch.com/ - Themes for Bootstrap

   http://glyphicons.com/ - Icons from Glyphicons Free, licensed under CC
   BY 3.0.

   http://jquery.com/ - jQuery 1.7.2

   http://www.lavishbootstrap.com/ - create new colour schemes