less than 1 minute read

Trying out Jekyll Bootstrap because it contains comments, categories and other utilities such as analytics.

Came across some problems with this plugin, it could pick up the bootstrap-3 theme. i.e Some links to the bootstrap js and css files were wrong “/assets/themes//bootstrap/css/bootstrap.min.css” instead of “/assets/themes/bootstrap-3/bootstrap/css/bootstrap.min.css”.

To fix change _includes/JB/setup

from
page.theme.name
to
layout.theme.name 

Also change _config.xml and set ASSET_PATH to “ASSET_PATH : /assets/themes/bootstrap-3”

This was due to jekyll upgrade. For more information on how Jekyll Bootstrap works Jekyll QuickStart Guide.

Updated:

Comments