git-date | layout | pagetitle | metadescription | featured-image | redirect_from | |
---|---|---|---|---|---|---|
2019-04-13 21:06:27 -0700 |
default |
DeFi - Best Decentralized Finance Projects | What is DeFi in Crypto |
DeFi(Decentralized Finance) is the movement that leverages decentralized networks to transform old financial products into trustless and transparent protocols. |
/images/og.png |
|
<div class="post-list" id="search-hits">
</div>
<div class="post-list" id="search-hits-defiprime">
</div>
</div>
</div>
{% assign docArray = "" | split: "" %}
{% assign collections = site.collections | where_exp: "coll", "coll.label != 'events'" | where_exp: "coll", "coll.label != 'posts'" | where_exp: "coll", "coll.label != 'alternatives'" %}
{% for collection in collections %}
{% assign docArray = collection.docs | concat: docArray %}
{% endfor %}
{% assign documents = docArray | sort: 'git-date' | reverse %}
{% comment %} The most recently __changed__ is last-modified-date. Temporarily swithing to __date__ {% endcomment %}
{% for document in documents limit: 6 %}
{% endfor %}
{% assign posts = site.categories.blog | sort: "date" | reverse %}
{% assign nonAmpPosts = "" | split: ','%}
{% for post in posts %}
{% unless post.url contains "/amp" %}
{% assign nonAmpPosts = nonAmpPosts | push: post %}
{% endunless %}
{% endfor %}
{% for blog_post in nonAmpPosts limit:6 %}
{% assign link_colors = 'violet|cyan|orange|violetgray' | split: '|' %}
<article class='latest_blog_link recent-blog-color_{{ forloop.index | random_item: link_colors }}'>
<a href="{{ blog_post.permalink | prepend: '/' }}">
<h2>{{ blog_post.h1title }}</h2>
<p>{{ blog_post.intro | strip_html | strip_newlines }}</p>
</a>
</article>
{% endfor %}
{% assign today_date = 'now' | date: '%s' %}
{% assign events = site.events | sort: "date" %}
{% assign counter = 0 %}
{% for event in events %}
{% assign event_date = event.date | date: '%s' %}
{% if counter > 2 %}
{% break %}
{% endif %}
{% if event_date > today_date %}
{% assign counter = counter | plus:1 %}
{% endif %}
{% endfor%}
{% include algolia.html %}