{% extends "template.html" %} {% block content %} {{markdown|safe}} {% if tweets != None %} recent tweets {% for text, url in tweets %} {% if text == None %} [image only] {% else %} {{text}} {% endif %} {% endfor %} {% endif %} recent git commits: {% for commit in commits %} {{"[%s] %s {+%i;-%i}" % (commit["repo"], commit["message"], commit["stats"]["additions"], commit["stats"]["deletions"])}} {% endfor %} {% endblock %}