Skip to content

Latest commit

 

History

History
142 lines (128 loc) · 5.03 KB

index.md

File metadata and controls

142 lines (128 loc) · 5.03 KB
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
product

DeFi and Open Finance

Decentralized Finance (DeFi) is the movement that leverages decentralized networks to transform old financial products into trustless and transparent protocols that run without intermediaries.

DeFi projects

{% assign sorted_categories_products = site.categories.products | sort: 'title', 'last' %} {% for post in sorted_categories_products %} {% for collection in site.collections %} {% if post.cards == collection.label %} {{ collection.docs | size }} {% endif %} {% endfor %} {% endfor %}

Recently added

{% 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 %}

Latest from DeFi blog

{% 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 %}

Upcoming DeFi events

{% 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 %}
{{ event.date | date_to_string }} {{ event.location | truncate: 31 }}
{% endif %} {% endfor%}

{% include algolia.html %}