{% extends "base.html" %} {% block title %} {{ super() }} {% endblock title %} {% block content %}
{% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.title %} {% endif %}
{% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.details %}

About me

{{ LANDING_PAGE_ABOUT.details }}
{% endif %} {% if PROJECTS %}

My Projects

{% for project in PROJECTS %} {%endfor %}
{% endif %}
{% if articles %}

Recent Posts all posts

{% for article in articles %} {% if not RECENT_ARTICLES_COUNT %} {% set RECENT_ARTICLES_COUNT = 10 %} {% endif %} {% if loop.index0 < RECENT_ARTICLES_COUNT %} {% endif %} {% endfor %}
{% endif %}
{% endblock content %}