{% extends "site_base.html" %} {% 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 demonstrates a social networking site. It provides profiles, friends, photos, blogs, tribes, wikis, tweets, bookmarks, swaps, locations and user-to-user messaging. {% endblocktrans %}

{% blocktrans %} In 0.5 this was called "complete_project". {% endblocktrans %}


{% if user.is_authenticated %} {% url what_next as what_next_url %}

{% blocktrans %}Wondering What Next?{% endblocktrans %}

{% else %} {% url acct_login as login_url %} {% ifsetting ACCOUNT_OPEN_SIGNUP %} {% url acct_signup as signup_url %}

{% blocktrans %}You can Sign up and Log in to try out the site.{% endblocktrans %}

{% else %}

{% blocktrans %}You can Log in to try out the site.{% endblocktrans %}

{% endifsetting %} {% endif %} {% endblock %}