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

47 lines
1.4 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 }}
2023-02-10 09:44:06 +00:00
2023-04-14 04:32:31 +00:00
{% assign tags_max = 0 %}
{% for tag in site.tags %}
{% if tag[1].size > tags_max %}
{% assign tags_max = tag[1].size %}
2019-07-11 19:06:40 +00:00
{% endif %}
{% endfor %}
2023-04-14 04:32:31 +00:00
<h2>Sections</h2>
<h3 id="top">☙ {% for item in site.data.tagz %}<a href="#{{item[0]|downcase}}">{{item[0] | upcase | replace: "_", "-" }}</a> ☙ {% endfor %}</h3>
<h2>Tags Grouped by Section</h2>
This system of navigation is part of an ongoing transition towards making this content, and its subject-matter, more accessible based upon the specific topic you are interested in.
{% for item in site.data.tagz %}
<h3 id="{{item[0] | downcase}}">{{ item[0] | upcase | replace: "_", "-" }}</h3>
2019-07-11 19:06:40 +00:00
<ul class="taxonomy__index">
2023-04-14 04:32:31 +00:00
{% for i in (1..tags_max) reversed %}
{% for tag in site.tags %}
{% if tag[1].size == i and item[1] contains tag[0] %}
<li>
<a href="tags/{{item[0] | replace: '_','-'}}#{{ tag[0] | slugify }}">
<strong>{{ tag[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
</a>
</li>
2019-07-11 19:06:40 +00:00
{% endif %}
{% endfor %}
{% endfor %}
</ul>
2023-04-14 04:32:31 +00:00
<a href="#top" class="back-to-top"><strong>{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</strong></a>
2019-03-28 23:40:33 +00:00
{% endfor %}