Sha256: c17a22810d7634a4b1d10df98089fe293e6779a3a6dc76d55efadd21e8b32f59

Contents?: true

Size: 938 Bytes

Versions: 9

Compression:

Stored size: 938 Bytes

Contents

<!-- sidebar-categories.html -->
<div class="d-flex flex-column flex-shrink-0" style="width: 280px;">
    <a href="/" class="d-flex align-items-center text-decoration-none">
        <span class="fs-4">Categories</span>
    </a>
    <hr>
    {% for category in site.categories %}
        <div class="">
            <button class="btn btn-toggle align-items-center rounded collapsed" data-bs-toggle="collapse" data-bs-target="#{{category[0]}}-list" aria-expanded="false">
                {{ category[0] }}
            </button>
            <div class="collapse" id="{{category[0]}}-list">
                <ul class="btn-toggle-nav list-unstyled fw-normal small">
                    {% for post in category[1] %}
                        <li class="link-light"><a href="{{ post.url }}" class=" rounded">{{ post.title }}</a></li>
                    {% endfor %}
                </ul>
            </div>
        </div>
    {% endfor %}
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-theme-zer0-0.1.8 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.7 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.6 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.5 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.4 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.3 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.2 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.1 _includes/sidebar-categories.html
jekyll-theme-zer0-0.1.0 _includes/sidebar-categories.html