decentralized-id.github.io/_includes/archive-single.html

52 lines
2.2 KiB
HTML
Raw Normal View History

2019-03-28 23:40:33 +00:00
{% if post.header.teaser %}
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
{% else %}
{% assign teaser = site.teaser %}
{% endif %}
{% if post.id %}
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
{% else %}
{% assign title = post.title %}
{% endif %}
2023-02-10 09:44:06 +00:00
<div class="{{ include.type | default: 'list' }}__item">
2019-03-28 23:40:33 +00:00
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
{% if include.type == "grid" and teaser %}
<div class="archive__item-teaser">
2023-02-10 09:44:06 +00:00
<img src="{{ teaser | relative_url }}" alt="">
2019-03-28 23:40:33 +00:00
</div>
{% endif %}
2023-04-14 04:23:17 +00:00
<br><strong><a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a></strong>
2020-01-07 09:40:26 +00:00
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 300 }}</p>{% endif %}
2020-12-01 05:00:49 +00:00
<p class="page__meta"><strong>Updated:</strong> {{ post.last_modified_at }} <i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
2023-01-23 10:44:44 +00:00
{% if post.name %}
2023-04-04 02:32:08 +00:00
{% assign tags = Nil%}
{% assign sorted_tags = Nil%}
2023-01-23 10:44:44 +00:00
{% for company in site.data.companys %}
2023-04-04 01:41:07 +00:00
{% if post.name == company.name %}
2023-04-04 03:22:10 +00:00
{% if company.parent %}{% assign tags = company.parent | push: post.name %}{% endif %}
{% if company.related != Nil %}
{% if company.related contains ';'%}
2023-04-14 04:23:17 +00:00
{% assign tgs = company.related |split: '; ' | push: post.name %}
{% assign tags = tags | concat: tgs %}
{% else %}
{% assign tags = tags | push: company.related | push: post.name %}
{% endif%}
2023-04-03 23:15:49 +00:00
{% endif %}
2023-04-04 03:22:10 +00:00
{% if tags != Nil %}
2023-04-14 04:23:17 +00:00
{% assign sorted_tags = tags | concat: post.tags | uniq | compact | sort_natural %}
2023-04-04 23:38:48 +00:00
{% elsif post.tags !=Nil %}
2023-04-14 04:23:17 +00:00
{% assign sorted_tags = post.tags | uniq | compact | sort_natural %}
{% endif%}
2023-01-23 10:44:44 +00:00
{% endif %}
{% endfor %}
2023-04-03 23:15:49 +00:00
{% else %}
{% assign sorted_tags = post.tags | uniq | compact | sort %}
2023-04-03 22:02:19 +00:00
{% endif %}
2023-04-03 23:15:49 +00:00
{% for tag in sorted_tags %}
<div class="tags">{{ tag }}</div>
2023-04-14 04:23:17 +00:00
{% endfor %}
2020-01-07 06:48:36 +00:00
</article>
2023-01-23 10:44:44 +00:00
</div>