---
layout: archive
---
{{ content }}
{% assign stay_on_top = site.stay_on_top_categories %}
{% assign categories_max = 0 %}
{% for category in site.categories %}
{% if category[1].size > categories_max %}
{% assign categories_max = category[1].size %}
{% endif %}
{% endfor %}
カテゴリ一覧
{% comment %} Iterate the Stay-on-Top list and all categories and render matched categories {% endcomment %}
{% for category in site.categories %}
{% for stay in stay_on_top %}
{% if category[0] == stay %}
-
{{ category[0] }}
{% endif %}
{% endfor %}
{% endfor %}
{% comment %} Iterate the Stay-on-Top list and all categories and render unmatched categories {% endcomment %}
{% for category in site.categories %}
{% assign skip = false %}
{% for stay in stay_on_top %}
{% if category[0] == stay %}
{% assign skip = true %}
{% endif %}
{% endfor %}
{% if skip %}
{% continue %}
{% endif %}
-
{{ category[0] }} {{ i }}
{% endfor %}
{% assign entries_layout = page.entries_layout | default: 'list' %}
{% for category in site.categories %}
{% for stay in stay_on_top %}
{% if category[0] == stay %}
{% endif %}
{% endfor %}
{% endfor %}
{% for category in site.categories %}
{% assign skip = false %}
{% for stay in stay_on_top %}
{% if category[0] == stay %}
{% assign skip = true %}
{% endif %}
{% endfor %}
{% if skip %}
{% continue %}
{% endif %}
{% endfor %}