decentralized-id.github.io/_layouts/home.html

56 lines
1.5 KiB
HTML
Raw Normal View History

2019-03-28 23:40:33 +00:00
---
layout: archive
---
2020-01-04 00:48:14 +00:00
<!-- <h2>Feature</h2>
2019-07-09 04:01:25 +00:00
2019-07-11 00:20:41 +00:00
{% include feature_row id="welcome" type="center" %}
2019-07-09 04:01:25 +00:00
2019-07-15 00:08:54 +00:00
{% include feature_row id="feature_row" %}
2020-01-04 00:48:14 +00:00
-->
2019-03-28 23:40:33 +00:00
{{ content }}
2019-07-11 19:06:40 +00:00
<h2 class="archive__subtitle">Categories</h2>
2019-03-28 23:40:33 +00:00
2019-07-11 19:06:40 +00:00
{% 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 %}
<li>
<a href="#{{ category[0] | slugify }}">
<strong>{{ category[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
</a>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
{% for i in (1..categories_max) reversed %}
{% for category in site.categories %}
{% if category[1].size == i %}
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
2020-01-07 06:48:36 +00:00
<h3 class="archive__subtitle">{{ category[0] }}</h3>
2019-07-11 19:06:40 +00:00
<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' }} &uarr;</a>
</section>
{% endif %}
{% endfor %}
2019-03-28 23:40:33 +00:00
{% endfor %}
2019-07-11 07:53:25 +00:00
{% include social-share.html %}
2019-07-09 04:01:25 +00:00