--- layout: default --- {% seo %} {% include header.html %}
{% assign content_stripped = content | strip %} {% if content_stripped != "" %}
{{ content }}
{% endif %} {% assign n_posts = site.posts | size %} {% if n_posts > 0 %}

Blog

{% for post in site.posts %} {% include post.html %} {% endfor %}
{% endif %} {% if site.data.work or site.data.education %}
{% if site.data.work %}

Work

{% for work in site.data.work %} {% include work.html %} {% endfor %}
{% endif %} {% if site.data.education %}

Education

{% for education in site.data.education %} {% include education.html %} {% endfor %}
{% endif %}
{% endif %} {% if site.data.projects %}

Projects

{% for project in site.data.projects %} {% include project.html %} {% endfor %}
{% endif %} {% if site.data.external %} {% for external in site.data.external %}

{{ external[1].name }}

{% for ext in external[1].list limit:external[1].limit %} {% include external-item.html %} {% endfor %}
{% if external[1].list.size > external[1].limit %} More {% endif %}
{% endfor %} {% endif %}
{% include footer.html %}