mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-11-25 08:58:03 -05:00
29 lines
647 B
HTML
29 lines
647 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
|
|
<div class="mt-5">
|
|
{{content}}
|
|
</div>
|
|
|
|
{% for category in site.categories %}
|
|
{% if category[0] == "game" %}
|
|
<!-- <h4 class="mt-5 mb-4 pb-2 border-bottom" id="{{ category[0] | replace: " ","-" }}"><span class="text-capitalize small font-weight-bold">Games</span></h4> -->
|
|
<div class="row">
|
|
{% assign pages_list = category[1] %}
|
|
{% for post in pages_list %}
|
|
{% if post.title != null %}
|
|
{% if group == null or group == post.group %}
|
|
<div class="col-md-4 mb-5">
|
|
{% include postbox.html %}
|
|
</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
{% assign pages_list = nil %}
|
|
{% assign group = nil %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|