2019-03-28 19:40:33 -04: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 04:44:06 -05:00
|
|
|
<div class="{{ include.type | default: 'list' }}__item">
|
2019-03-28 19:40:33 -04: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 04:44:06 -05:00
|
|
|
<img src="{{ teaser | relative_url }}" alt="">
|
2019-03-28 19:40:33 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2023-02-10 04:44:06 -05:00
|
|
|
<h3 class="archive__item-title no_toc" itemprop="headline">
|
2019-03-28 19:40:33 -04:00
|
|
|
{% if post.link %}
|
|
|
|
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
|
|
|
|
{% endif %}
|
2020-01-07 01:48:36 -05:00
|
|
|
</h3>
|
2020-01-07 04:40:26 -05:00
|
|
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 300 }}</p>{% endif %}
|
2020-12-01 00:00:49 -05: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 05:44:44 -05:00
|
|
|
|
|
|
|
{% if post.name %}
|
|
|
|
{% assign name = post.name %}
|
|
|
|
{% for company in site.data.companys %}
|
|
|
|
{% assign dname = company.name %}
|
|
|
|
{% if dname == name %}
|
|
|
|
{% if company.parent %}
|
|
|
|
{% assign related = company.parent %}
|
|
|
|
{% assign splittags = company.related | split: ";" %}
|
|
|
|
{% assign splittags = splittags | push: related | push: name %}
|
|
|
|
{% assign sorted_tags = splittags | compact | sort_natural %}
|
|
|
|
{% for tag in sorted_tags %}
|
|
|
|
<div class="tags">{{ tag }}</div>
|
|
|
|
{% endfor %}<br>
|
|
|
|
{% elsif company.related %}
|
|
|
|
{% assign related = company.related %}
|
|
|
|
{% assign splittags = related | append: ";" | append: name %}
|
|
|
|
{% assign splittags = splittags | split: ";" | compact %}
|
|
|
|
{% assign sorted_tags = splittags | sort_natural %}
|
|
|
|
{% for tag in sorted_tags %}
|
|
|
|
<div class="tags">{{ tag }}</div>
|
|
|
|
{% endfor %}<br>
|
|
|
|
{% else %}
|
|
|
|
{% assign sorted_tags = company.name %}
|
|
|
|
{% for tag in sorted_tags %}
|
|
|
|
<div class="tags">{{ tag }}</div>
|
|
|
|
{% endfor %}<br>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% elsif post.tags %}
|
|
|
|
{% assign sorted_tags = post.tags | sort %}
|
|
|
|
{% for tag in sorted_tags %}
|
|
|
|
<div class="tags">{{ tag }}</div>
|
|
|
|
{% endfor %}<br>
|
|
|
|
{% endif %}<hr>
|
2020-01-07 01:48:36 -05:00
|
|
|
</article>
|
2023-01-23 05:44:44 -05:00
|
|
|
</div>
|