{% extends "site_base.html" %} {% load i18n %} {% block head_title %}{% trans "Welcome" %}{% endblock %} {% block tab_id %}id="home_tab"{% endblock %} {% block body %} {% 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.
This site is a very basic running example of Pinax with most of the features taken out.
For more information about Pinax, see http://pinaxproject.com/. {% endblocktrans %} {% if user.is_authenticated %} {% else %} {% url acct_signup as signup_url %} {% url acct_login as login_url %}
{% blocktrans %}You can Sign up and Log in to try out the site.{% endblocktrans %}
{% endif %} {% endblock %}