{% 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: "

" | remove: "

" %} {% else %} {% assign title = post.title %} {% endif %}
{% if include.type == "grid" and teaser %}
{% endif %}

{% if post.link %} {{ title }} Permalink {% else %} {{ title }} {% endif %}

{% if post.excerpt %}

{{ post.excerpt | markdownify | strip_html | truncate: 300 }}

{% endif %}

Updated: {{ post.last_modified_at }} {% include read-time.html %}

{% if post.name %} {% assign tags = Nil%} {% assign sorted_tags = Nil%} {% for company in site.data.companys %} {% if post.name == company.name %} {% if company.parent %} {% assign tags = company.parent | push: post.name %} {% endif %} {% if company.related %} {% if tags != Nil %} {% assign tags = tags | push: company.related %} {%else %} {% assign tags = company.related %} {%endif%} {% endif %} {% assign sorted_tags = tags | concat: post.tags | uniq | compact | sort %} {% endif %} {% endfor %} {% else %} {% assign sorted_tags = post.tags | uniq | compact | sort %} {% endif %} {% for tag in sorted_tags %}
{{ tag }}
{% endfor %}