toc.html 1.11 KB
<div id="bs-sidebar" class="bs-sidebar hidden-print affix" role="complementary">
    <ul class="nav bs-sidenav">
        {% for toc_item in toc %}
            <li class="main {% if toc_item.active %}active{% endif %}"><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
            {% if toc_item.children %}
                <ul class="nav scroll_toggle">
                {% for toc_item in toc_item.children %}
                    <li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
                {% endfor %}
                </ul>
                <hr />
            {% endif %}
        {% endfor %}

        <!-- Isn't working yet :( -->
        {% if current_page == "Home" %}
            <li class="github-button">
                <div align="center">
                    <iframe src="http://ghbtns.com/github-btn.html?user=biometrics&amp;repo=openbr&amp;type=watch&amp;count=true&amp;size=large"
                        allowtransparency="true" frameborder="0" scrolling="0" width="150" height="30">
                    </iframe>
                </div>
            </li>
        {% endif %}
    </ul>
</div>