{% extends "base.html" %}{% load i18n st_core blog %} {% block title %}{% trans "Welcome" %}{% endblock %} {% block content %}

{% trans "Welcome" %}

{% get_recent_posts LANGUAGE_CODE POSTS_IN_INDEX as posts %} {% for post in posts %}{% include "blog/post_excerpt.html" %}{% endfor %}

{% trans "More posts at the archive" %}

{% endblock %}