How to use Twitter Bootstrap 3 with play framework 2.3
playframework, playframework-2.3, twitter-bootstrap
Solution
DO NOT divide downloaded library manually, what for? It contains relative paths.
Just unzip it i.e. into `public/bootstrap` folder and include JS/CSS from there as common public asset:
<link rel="stylesheet"
href="@routes.Assets.at("assets/bootstrap/css/bootstrap.css")">
<script type='text/javascript'
src='@routes.Assets.at("assets/bootstrap/js/bootstrap.js")'></script>
of course I assume that you have default route created by Play:
GET /assets/*file controllers.Assets.at(path="/public", file)
TIP: these folders you mentioned are just sample, it doesn't oblique you to anything... you can move/rename/delete them, whatever
Problem
I have been trying adding bootstrap's js and css files to public/javascripts and public/stylesheets application in play framework application. I donno why but I get a blank output. Is it the correct way to proceed for bootstrap v3 with play v2.3? If not what's the correct procedure to do it?