{% extends "site_base.html" %} {% load biblion_tags %} {% load i18n %} {% load ifsetting_tag %} {% block head_title %}{% trans "Welcome" %}{% endblock %} {% block body_class %}home{% endblock %} {% block body %}

{% trans "Welcome to Pinax" %}

{% blocktrans %} Pinax is a Django project intended to provide a starting point for websites. By integrating numerous reusable Django apps to take care of the things that many sites have in common, it lets you focus on what makes your site different. {% endblocktrans %}

{% blocktrans %} For more information about Pinax, see http://pinaxproject.com/. {% endblocktrans %}

{% trans "About this project" %}

{% blocktrans %} This project provides a simple out of the box blog. {% endblocktrans %}

{% trans "Latest Blog Posts" %}

{% latest_blog_posts as posts %} {% if posts %} {% for post in posts %}
{% include "biblion/_minipost.html" %}
read more →
{% endfor %} {% else %}

No blog posts have been published.

{% endif %} {% endblock %}