{% extends 'base.html' %} {% block title %} {{ super() }} {% endblock title %} {% block meta_tags_in_head %} {{ super() }} {% from '_includes/_defaults.html' import LANDING_PAGE_TITLE, FEATURED_IMAGE, SITE_DESCRIPTION with context %} {% if LANDING_PAGE_TITLE %} {% else %} {% endif %} {% if FEATURED_IMAGE %} {% endif %} {% if SITE_DESCRIPTION %} {% endif %} {% endblock meta_tags_in_head %} {% block content %} {% from '_includes/_defaults.html' import LANDING_PAGE_TITLE, PROJECTS, PROJECTS_TITLE with context %} {% set landing_page = namespace(page=false) %} {% for p in hidden_pages if p.slug == "landing-page-about-hidden" %} {% set landing_page.page = p %} {% endfor %}
{% if LANDING_PAGE_TITLE %} {% set css_class = 'span10 offset2' %} {% if PROJECTS and LANDING_PAGE_TITLE %} {% set css_class = 'span12' %} {% endif %} {% endif %}
{% if LANDING_PAGE_TITLE and landing_page.page %} {% set css_class = 'span8 offset2' %} {% if PROJECTS and LANDING_PAGE_TITLE %} {% set css_class = 'span8' %} {% endif %}

{{ landing_page.page.title }}

{{ landing_page.page.content }}
{% endif %} {% if PROJECTS %} {% set css_class = 'span8 offset2' %} {% if PROJECTS and LANDING_PAGE_TITLE %} {% set css_class = 'span4' %} {% endif %}

{{ PROJECTS_TITLE }}

{% for project in PROJECTS %} {% endfor %}
{% endif %}
{% if articles %} {% set css_class = 'span8 offset2' %} {% if articles and PROJECTS and LANDING_PAGE_TITLE %} {% set css_class = 'span12' %} {% endif %} {% from '_includes/_defaults.html' import RECENT_ARTICLES_COUNT, ARCHIVES_URL, CATEGORIES_URL with context %}

Recent Posts all posts

{% for article in articles %} {% if loop.index0 < RECENT_ARTICLES_COUNT %}
{{ article.title }} {% if article.subtitle %} {{ article.subtitle }} {% endif %}
posted in {{ article.category }}
{% if RECENT_ARTICLE_SUMMARY %}

{{ article.summary }}

{% endif %}
{% endif %} {% endfor %}
{% endif %}
{% endblock content %}