mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
64 lines
1.7 KiB
HTML
64 lines
1.7 KiB
HTML
---
|
|
layout: archive
|
|
---
|
|
|
|
<!-- <h2>Feature</h2>
|
|
|
|
{% include feature_row id="welcome" type="center" %}
|
|
|
|
{% include feature_row id="feature_row" %}
|
|
|
|
-->
|
|
|
|
{{ content }}
|
|
|
|
<h2 class="archive__subtitle">Categories</h2>
|
|
|
|
{% assign categories_max = 0 %}
|
|
{% for category in site.categories %}
|
|
{% if category[1].size > categories_max %}
|
|
{% assign categories_max = category[1].size %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<ul class="taxonomy__index">
|
|
{% for i in (1..categories_max) reversed %}
|
|
{% for category in site.categories %}
|
|
{% if category[1].size == i %}
|
|
{% if category[0] == "Twitter" %}
|
|
<!--// we do nothing-->
|
|
{% else if %}
|
|
<li>
|
|
<a href="#{{ category[0] | slugify }}">
|
|
<strong>{{ category[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% for i in (1..categories_max) reversed %}
|
|
{% for category in site.categories %}
|
|
{% if category[1].size == i %}
|
|
{% if category[0] == "Twitter" %}
|
|
<!--// we do nothing-->
|
|
{% else if %}
|
|
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
|
|
<h3 class="archive__subtitle">{{ category[0] }}</h3>
|
|
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
{% for post in category.last %}
|
|
{% include archive-single.html type=page.entries_layout %}
|
|
{% endfor %}
|
|
</div>
|
|
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
|
</section>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% include social-share.html %}
|
|
|