{% extends "base.html" %} {% block head %} {{ super() }} {% if page %} {% if page.description %} {% endif %} {% if page.tags %} {% endif %} {% if page.cover %} {% endif %} {% endif %} {% endblock %} {% block content %} {% if page %} {{ page.content|indent(12) }} {% endif %} {% if articles %} Recent Posts {% for article in articles[:5] %} {{ article.title }} {{ article.locale_date }} {% endfor %} Want to see more posts? {% endif %} {% if articles %} Projects {% for article in articles if article.featured_project %} {% if article.cover %} {% endif %} {{ article.title }} {{ article.description or article.summary }} {% endfor %} {% endif %} {% endblock content %} {% block footer %} {% endblock %}
Want to see more posts?