---
layout: default
---
{% if page.url == "/" %}
{% for tab in site.data.tabs.content-tabs %}
- - {{tab.title}}
{% endfor %}
{% for post in site.work limit: 3 %}
{% include post-content.html %}
{% endfor %}
{% for post in site.blog limit: 3 %}
{% include post-content.html %}
{% endfor %}
{% for post in site.photos limit: 3 %}
{% include post-content.html %}
{% endfor %}
{% endif %}
{% if page.url == "/work/" %}
{% for post in site.work %}
{% include post-content.html %}
{% endfor %}
{% elsif page.url == "/blog/" %}
{% for post in site.blog %}
{% include post-content.html %}
{% endfor %}
{% elsif page.url == "/photos/" %}
{% for post in site.photos %}
{% include post-content.html %}
{% endfor %}
{% endif %}