Skip to content

Latest commit

 

History

History
50 lines (46 loc) · 1.93 KB

File metadata and controls

50 lines (46 loc) · 1.93 KB

Feel free to add content and custom Front Matter to this file.


    {% for post in site.posts %} {% if post.category == "programming" %}
  • {{ post.title }} ({{ post.date | date: "%Y-%m-%d" }})
  • {% endif %} {% endfor %}
    {% assign blockchain_posts = site.posts | where: "category", "blockchain" %} {% assign all_posts = blockchain_posts | concat: site.data.external_posts.blockchain | sort: "date" | reverse %} {% for post in all_posts %}
  • {{ post.title }} ({{ post.date | date: "%Y-%m-%d" }})
  • {% endfor %}
    {% for post in site.posts %} {% if post.category != "blockchain" and post.category != "programming" %}
  • {{ post.title }} ({{ post.date | date: "%Y-%m-%d" }})
  • {% endif %} {% endfor %}

Presentations

{% assign presentations = site.presentations | reverse %} {% for p in presentations %}
{{ p.abstract | markdownify}}
{% endfor %}