Below is a summary of my current research.
Academic Research
{% for post in site.posts %}
{% if post.tag contains 'research' %}
{% if post.status %}
{{ post.status }}
{% endif %}
{{ post.content }}
{% endif %}
{% endfor %}
{% assign has_private = false %}
{% for post in site.posts %}
{% if post.tag contains 'privateSector' %}{% assign has_private = true %}{% endif %}
{% endfor %}
{% if has_private %}
Private Sector Studies
{% for post in site.posts %}
{% if post.tag contains 'privateSector' %}
{% if post.status %}
{{ post.status }}
{% endif %}
{{ post.content }}
{% endif %}
{% endfor %}
{% endif %}