To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
-
{% 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 %}
{% assign presentations = site.presentations | reverse %}
{% for p in presentations %}
{% endfor %}
{{ p.abstract | markdownify}}
