See https://github.com/plusjade/jekyll-bootstrap/issues/42 I had to temporarily hard code in menu items. https://github.com/rickmanelius/drupalpcicompliance/blob/gh-pages/_layouts/default.html#L28 I'd prefer to have something like this back in place ``` <ul> {% for page in site.pages %} <li> <a href="{{ page.url }}"> {{ page.title }} </a> </li> {% endfor %} </ul> ```