Closed frt closed 7 years ago
This template includes only the bootstrap.css file, so lines like the following doesn't work. This is from the default-layout.hamlet that comes with the template:
bootstrap.css
default-layout.hamlet
<button type="button" .navbar-toggle.collapsed data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
To solve this I put a <script src="... in the default-layout-wrapper.hamlet, so it gets the bootstrap.js from a CDN.
<script src="...
default-layout-wrapper.hamlet
bootstrap.js
Thanks!
This template includes only the
bootstrap.css
file, so lines like the following doesn't work. This is from thedefault-layout.hamlet
that comes with the template:To solve this I put a
<script src="...
in thedefault-layout-wrapper.hamlet
, so it gets thebootstrap.js
from a CDN.