---
layout: single
---
{%assign todo = "feed,github" | split: ","%}
{%assign socials = "discord,crunchbase,linkedin,telegram,twitter,youtube" | split: ","%}
{%assign core = "docs,developers,app,forum,github" | split: ","%}
{%assign headers = "Company,Product,Meta,Ecosystem,Explainer,Standards,Policy,HowTo,Recap,Resources" | split: "," %}
{% for item in headers %}
{%assign mark=''%}
{% assign content = site.data.content | sort: 'date' | reverse %}
{%for row in content %}
{% if row.section == item and row.main == page.name and mark != 1 %}{%assign mark = 1%}
{{item | capitalize}}
{%endif%}
{% if row.section == item and row.main == page.name %}
{%assign attributes = "location,region,policy,event,sector,industry,market,focus,projects,tech,standard" | split: "," %}
{% if row.section == "Company"%}Name: {{ row.title}}
{%else%}- {{ row.title }}{%endif%}
{% if row.section == "Company"%}
Main: Website, Blog,
{% for item in row %}
{% if core contains item.first %}
{% if item.last != nil %}
{{item.first | capitalize}},
{% endif %}
{% endif %}
{% endfor %}
Socials:
{% for item in row %}
{% if socials contains item.first %}
{% if item.last != nil %}
{{item.first | capitalize}},
{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% endif %}
{% if row.related contains ';' %}
Related:{%assign related = row.related|split:';'%}
{%assign trekker = 0%}
{%for item in related%}
{%assign trekker = trekker | plus: 1%}
{%endfor%}
{%for item in related%}
{%if item != nil%} {{item|strip}}{%if trekker > 1%},{%assign trekker = trekker | minus: 1%}{%endif%}{%endif%}
{%endfor%}
{%elsif row.related == nil%}
{%else%}
Related: {{row.related}}
{%endif%}
{%if row.parent !=nil and row.parent != page.name%}Parent: {{row.parent}}{%endif%}
{% if row.type != "Company" %}Type: {{row.type|strip|capitalize}}{% endif %}
{% if row.founders !=nil%}
{% if row.founders contains ';' %}
{% if row.type == "Company" %}Founders{%else%}Authors{% endif %}{{ row.founders | replace: ";",", " | prepend: ": "}}
{% else %}
{% if row.type == "Company" %}Founder{%else%}Founder{% endif %}{{ row.founders | replace: ";",", " | prepend: ": "}}
{%endif%}
{%endif%}
{%if row.date != nil%} {% if row.type == "Company" %}Founded:{%else%}Date:{% endif %} {{row.date}}{%endif%}
{%for item in row%}
{%if attributes contains item.first and item.last != nil %}
{% if item.last contains ';' %}
{{item.first|capitalize}}:
{% assign ray = item.last | split: ';'%}
{%for item in ray %}{%if item != " "%} {{item|strip}}{% if forloop.last %}{% else %}, {% endif %}{%endif%}{%endfor%}
{% elsif item.last contains ',' %}
{{item.first|capitalize}}:
{% assign ray = item.last | split: ','%}
{%for item in ray %}{%if item != " "%} {{item|strip}}{% if forloop.last %}{% else %}, {% endif %}{%endif%}{%endfor%}
{%else%}
{{item.first|capitalize}}: {{item.last}}
{%endif%}
{%endif%}
{%endfor%}
{% if row.section == "Company"%}{% else %}{% endif %}
{% if row.text %}{{row.text | markdownify}}
{%endif%}
{%endif%}
{% endfor %}
{% endfor %}
{%for row in site.data.content%}
{% if row.main != page.name and row.related contains page.name %}
{% assign count = 1 %}
{%endif%}
{%endfor%}
{%if count == 1%}
From other pages on this site. (Beta)
{%assign attributes = "related,location,region,policy,event,sector,industry,market,focus,projects,tech,standard" | split: "," %}
{% assign content = site.data.content | sort: 'date' %}
{%for row in content %}
{% if row.main != page.name and row.related contains page.name %}
- Name: {{ row.title }}
{%if row.parent !=nil and row.parent != page.name%}Parent: {{row.parent}}{%endif%}
Type: {{row.type|strip|capitalize}}
{% if row.founders !=nil%}
{% if row.founders contains ';' %}
Author(s){{ row.founders | replace: ";",", " | prepend: ": "}}
{% else %}
Author{{row.founders | prepend: ": "}}
{%endif%}
{%endif%}
{% if row.related !=nil%}
{% if row.related contains ';' %}
Related{{ row.related | replace: ";",", " | prepend: ": "}}
{% else %}
Related{{row.related | prepend: ": "}}
{%endif%}
{%endif%}
{%if row.date != nil%} Date: {{row.date}}{%endif%}
{%for item in row%}
{%if attributes contains item.first and item.last != nil %}
{% if item.last contains ';' %}
{{item.first|capitalize}}:
{% assign ray = item.last | split: ';'%}
{%for item in ray %}{%if item != " "%} {{item|strip}}, {%endif%}{%endfor%}
{% elsif item.last contains ',' %}
{{item.first|capitalize}}:
{% assign ray = item.last | split: ','%}
{%for item in ray %}{%if item != " "%} {{item|strip}}, {%endif%}{%endfor%}
{%else%}
{{item.first|capitalize}}: {{item.last}}
{%endif%}
{%endif%}
{%endfor%}
{% if row.text %}{{row.text | markdownify}}
{%endif%}
{%endif%}
{%endfor%}
{%endif%}