{% extends 'base.html' %} {% block title %} {{ super() }} {% endblock title %} {% block meta_tags_in_head %} {{ super() }} {% from '_includes/_defaults.html' import LANDING_PAGE_ABOUT with context %} {% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.title %} {% else %} {% endif %} {% from '_includes/_defaults.html' import SITE_DESCRIPTION with context %} {% if SITE_DESCRIPTION %} {% endif %} {% from '_includes/_defaults.html' import FEATURED_IMAGE with context %} {% if FEATURED_IMAGE %} {% endif %} {% endblock meta_tags_in_head %} {% block content %} {% from '_includes/_defaults.html' import LANDING_PAGE_ABOUT with context %} {% from '_includes/_defaults.html' import PROJECTS with context %}
{% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.title %} {% set css_class = 'span10 offset2' %} {% if PROJECTS and LANDING_PAGE_ABOUT %} {% set css_class = 'span12' %} {% endif %} {% endif %}
{% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.details %} {% set css_class = 'span8 offset2' %} {% if PROJECTS and LANDING_PAGE_ABOUT %} {% set css_class = 'span8' %} {% endif %}

About me

{{ LANDING_PAGE_ABOUT.details }}
{% endif %} {% if PROJECTS %} {% set css_class = 'span8 offset2' %} {% if PROJECTS and LANDING_PAGE_ABOUT %} {% set css_class = 'span4' %} {% endif %}

My Projects

{% for project in PROJECTS %} {%endfor %}
{% endif %}
{% if articles %} {% set css_class = 'span8 offset2' %} {% if articles and PROJECTS and LANDING_PAGE_ABOUT %} {% set css_class = 'span12' %} {% endif %}

Recent Posts all posts

{% for article in articles %} {% from '_includes/_defaults.html' import RECENT_ARTICLES_COUNT with context %} {% if loop.index0 < RECENT_ARTICLES_COUNT %} {% endif %} {% endfor %}
{% endif %}
{% endblock content %}