mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
clean up code \ bug chasing
This commit is contained in:
parent
f5dfc46662
commit
97df480762
@ -32,17 +32,23 @@
|
||||
{% 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 %}
|
||||
{% if company.parent %}{% assign tags = company.parent | push: post.name %}{% endif %}
|
||||
{% if company.related != Nil %}
|
||||
{% if company.related contains ';'%}
|
||||
{% assign related = company.related |split: ';' | push: post.name %}
|
||||
{% else %}
|
||||
{% if tags != Nil %}
|
||||
{% assign tags = tags | push: company.related %}
|
||||
{% else %}
|
||||
{% assign tags = company.related %}
|
||||
{%endif%}
|
||||
{% endif %}
|
||||
{% 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 %}
|
||||
{% if tags != Nil %}
|
||||
{% assign sorted_tags = tags | concat: post.tags | uniq | compact | sort %}
|
||||
{% else %}
|
||||
{% assign sorted_tags = post.tags | push: post.name | uniq | compact | sort_natural %}
|
||||
{%endif%}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
|
Loading…
Reference in New Issue
Block a user