Sha256: d0255edcdbf95bcfbd9bf12ae78bf9d03fb704ff25e21811f599cb71a52a3e79

Contents?: true

Size: 586 Bytes

Versions: 3

Compression:

Stored size: 586 Bytes

Contents

---
title: "Categories"
layout: default
permalink: "/categories.html"
---

<div class="row listrecent">
{% for category in site.categories %}
<div class="section-title col-md-12 mt-4">
<h2 id="{{ category[0] | replace: " ","-" }}">Category <span class="text-capitalize">{{ category[0] }}</span></h2>
</div>
{% assign pages_list = category[1] %}
{% for post in pages_list %}
{% if post.title != null %}
{% if group == null or group == post.group %}
{% include postbox.html %}
{% endif %}
{% endif %}
{% endfor %}
{% assign pages_list = nil %}
{% assign group = nil %}
{% endfor %}
</div>

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
medium-theme-0.0.1 _layouts/categories.html
mediumish-0.0.2 _layouts/categories.html
mediumish-0.0.1 _layouts/categories.html