{% assign sorted = (site.blog | sort: ‘date’) | reverse %}
{% for post in sorted %}
{% if post.exclude_from_loop %}
{% continue %}
{% endif %}
{% assign icon = "ion-md-paper" %}
{% if post.icon %}
{% assign icon = "ion-md-" | append: post.icon %}
{% endif %}