mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-12-24 06:39:31 -05:00
cleanup template \ data
This commit is contained in:
parent
9ea427422a
commit
ad2a4afb4d
File diff suppressed because one or more lines are too long
@ -1,31 +1,23 @@
|
||||
---
|
||||
layout: single
|
||||
---
|
||||
{%assign todo = "parent,use,sector,market,projects,feed,policy,event,tags" | split: ","%}
|
||||
{%assign todo = "feed,github" | split: ","%}
|
||||
{%assign socials = "discord,crunchbase,linkedin,telegram,twitter,youtube" | split: ","%}
|
||||
{%assign core = "docs,developers,app,forum,github" | split: ","%}
|
||||
{% if page.name %}
|
||||
{% for row in site.data.companys %}
|
||||
{% if row.name == page.name %}
|
||||
<p>{%if row.location %}
|
||||
<strong>Location:</strong> <em>{{row.location}}</em>
|
||||
{% elsif row.region%}
|
||||
<strong>Region: </strong><em>{{row.region}}</em>
|
||||
{%endif%}
|
||||
{%if row.founders != nil %}
|
||||
{% if row.founders contains ';' %}
|
||||
{% assign authors = row.founders | replace: ";","," %}
|
||||
<strong>Founders</strong>: {{authors}}
|
||||
{%else%}
|
||||
<strong>Founder</strong>: {{row.founders}}
|
||||
{%endif%}
|
||||
{%endif%}
|
||||
{%if row.date != nil %} <strong>Founded</strong>: {{row.date}} {%endif%}<br>
|
||||
<strong>Main:</strong> <em><a href="{{row.link}}">Website</a> <a href="{{row.blog}}">Blog</a> </em>
|
||||
{%assign headers = "Company,Product,Meta,Ecosystem,Explainer,Standards,Policy,HowTo,Recap,Resources" | split: "," %}
|
||||
{% for item in headers %}
|
||||
{%assign mark=''%}
|
||||
{% for row in site.data.content %}
|
||||
{% if row.section == item and row.main == page.name and mark != 1 %}{%assign mark = 1%}<h2 id="{{item}}">{{item | capitalize}}</h2><ul>{%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"%}<h3>Name: {{ row.title}}</h3>{%else%}<li><strong><a href="{{ row.link }}">{{ row.title }}</a></strong></br>{%endif%}
|
||||
{% if row.section == "Company"%}<em>
|
||||
<strong>Main:</strong> <em><a href="{{row.link}}">Website</a>, <a href="{{row.blog}}">Blog</a>,</em>
|
||||
{% for item in row %}
|
||||
{% if core contains item.first %}
|
||||
{% if item.last != nil %}
|
||||
<em><a href="{{ item.last }}">{{item.first | capitalize}}</a></em>
|
||||
<em><a href="{{ item.last }}">{{item.first | capitalize}}</a></em>,
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
@ -33,21 +25,67 @@ layout: single
|
||||
{% for item in row %}
|
||||
{% if socials contains item.first %}
|
||||
{% if item.last != nil %}
|
||||
<em><a href="{{ item.last }}">{{item.first | capitalize}}</a></em>
|
||||
<em><a href="{{ item.last }}">{{item.first | capitalize}}</a></em>,
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<p><blockquote>{{row.text | markdownify }}</blockquote></p>
|
||||
{% else %}<small>
|
||||
{% endif %}
|
||||
{% endfor %}</p>
|
||||
{%assign headers = "Meta,Ecosystem,Product,Standards,HowTo,Resources,Explainer" | split: "," %}
|
||||
{% for item in headers %}
|
||||
{%assign mark=''%}
|
||||
{% if row.related contains ';' %}
|
||||
<strong>Related</strong>:{%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%}
|
||||
<strong>Related</strong>: {{row.related}}
|
||||
{%endif%}
|
||||
{%if row.parent !=nil and row.parent != page.name%}<strong>Parent: </strong>{{row.parent}}{%endif%}
|
||||
{% if row.type != "Company" %}<strong>Type: </strong>{{row.type|strip|capitalize}}{% endif %}
|
||||
{% if row.founders !=nil%}
|
||||
{% if row.founders contains ';' %}
|
||||
<strong>{% if row.type == "Company" %}Founders{%else%}Authors:{% endif %}</strong>{{ row.founders | replace: ";","," | prepend: ": "}}
|
||||
{% else %}
|
||||
<strong>{% if row.type == "Company" %}Founder{%else%}Founder:{% endif %}</strong>{{ row.founders | replace: ";","," | prepend: ": "}}
|
||||
{%endif%}
|
||||
{%endif%}
|
||||
{%if row.date != nil%} <strong>{% if row.type == "Company" %}Founded:{%else%}Date:{% endif %}</strong> {{row.date}}{%endif%}
|
||||
{%for item in row%}
|
||||
{%if attributes contains item.first and item.last != nil %}
|
||||
{% if item.last contains ';' %}
|
||||
<strong>{{item.first|capitalize}}:</strong>
|
||||
{% assign ray = item.last | split: ';'%}
|
||||
{%for item in ray %}{%if item != " "%} {{item|strip}}{%endif%}{%endfor%}
|
||||
{%else%}
|
||||
<strong>{{item.first|capitalize}}:</strong> {{item.last}}
|
||||
{%endif%}
|
||||
{%endif%}
|
||||
{%endfor%}
|
||||
{% if row.section == "Company"%}</em>{% else %}</small>{% endif %}
|
||||
</li>
|
||||
{% if row.text %}<blockquote>{{row.text | markdownify}}</blockquote>{%endif%}
|
||||
{%endif%}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
{%for row in site.data.content%}
|
||||
{% if row.section == item and row.main == page.name and mark != 1 %}{%assign mark = 1%}<h2 id="{{item}}">{{item | capitalize}}</h2><ul>{%endif%}
|
||||
{% if row.section == item and row.main == page.name %}
|
||||
{%assign attributes = "tags,market,use,sector,projects,tech,standard" | split: "," %}
|
||||
<li><small>
|
||||
{% if row.main != page.name and row.related contains page.name %}
|
||||
{% assign count = 1 %}
|
||||
{%endif%}
|
||||
{%endfor%}
|
||||
{%if count == 1%}
|
||||
<h2 id="related">Related</h2>
|
||||
<p>From other pages on this site. (Beta)</p>
|
||||
<ul>
|
||||
{%assign attributes = "related,location,region,policy,event,sector,industry,market,focus,projects,tech,standard" | split: "," %}
|
||||
{%for row in site.data.content%}
|
||||
{% if row.main != page.name and row.related contains page.name %}
|
||||
<li>Name: <strong><a href="{{ row.link }}">{{ row.title }}</a></strong><br>
|
||||
<small>
|
||||
{% if row.related contains ';' %}
|
||||
<strong>Relevant</strong>:{%assign related = row.related|split:';'%}
|
||||
{%assign trekker = 0%}
|
||||
@ -63,7 +101,6 @@ layout: single
|
||||
{%endif%}
|
||||
{%if row.parent !=nil and row.parent != page.name%}<strong>Parent: </strong>{{row.parent}}{%endif%}
|
||||
<strong>Type: </strong>{{row.type|strip|capitalize}}</small>
|
||||
<strong><a href="{{ row.link }}">{{ row.title }}</a></strong>
|
||||
<small>
|
||||
{% if row.founders !=nil%}
|
||||
{% if row.founders contains ';' %}
|
||||
@ -90,59 +127,4 @@ layout: single
|
||||
{%endif%}
|
||||
{%endfor%}
|
||||
</ul>
|
||||
{% 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%}
|
||||
<h2 id="related">Related</h2>
|
||||
<p>From other pages on this site. (Beta)</p>
|
||||
<ul>
|
||||
{%assign attributes = "tags,market,use,sector,projects,tech,standard" | split: "," %}
|
||||
{%for row in site.data.content%}
|
||||
{% if row.main != page.name and row.type != "Company" and row.related contains page.name %}
|
||||
<li>
|
||||
{% if row.related contains ';' %}
|
||||
<strong>Relevant</strong>:{%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%}
|
||||
<strong>Relevant</strong>: {{row.related}}
|
||||
{%endif%}
|
||||
{%if row.parent !=nil%}<strong>Parent: </strong>{{row.parent}}{%endif%}
|
||||
<strong>Type: </strong>{{row.type|strip|capitalize}}
|
||||
<strong>Title: </strong><a href="{{ row.link }}">{{ row.title }}</a>
|
||||
{% if row.founders !=nil%}
|
||||
{% if row.founders contains ';' %}
|
||||
<strong>Author(s)</strong>{{ row.founders | replace: ";","," | prepend: ": "}}
|
||||
{% else %}
|
||||
<strong>Author</strong>{{row.founders | prepend: ": "}}
|
||||
{%endif%}
|
||||
{%endif%}
|
||||
{%if row.date != nil%} <strong>Date:</strong> ({{row.date}}){%endif%}
|
||||
{%for item in row%}
|
||||
{%if attributes contains item.first and item.last != nil %}
|
||||
{% if item.last contains ';' %}
|
||||
<strong>{{item.first|capitalize}}:</strong>
|
||||
{% assign ray = item.last | split: ';'%}
|
||||
{%for item in ray %}{%if item != " "%} {{item|strip}}{%endif%}{%endfor%}
|
||||
{%else%}
|
||||
<strong>{{item.first|capitalize}}:</strong> {{item.last}}
|
||||
{%endif%}
|
||||
{%endif%}
|
||||
{%endfor%}
|
||||
{% if row.text %}<blockquote>{{row.text | markdownify}}</blockquote>{%endif%}
|
||||
</li>
|
||||
{%endif%}
|
||||
{%endfor%}
|
||||
</ul>
|
||||
{%endif%}
|
||||
{%endif%}
|
Loading…
Reference in New Issue
Block a user