{% extends "base.html" %} {% load i18n %} {% block body_class %}index{% endblock %} {% block breadcrumb %}{% endblock %} {% block content_title %}

{% trans "Welcome to Transifex" %}

{% endblock %} {% block body %} {% if not request.user.is_authenticated %}
{% url user_changeopenid as user_changeopenid %} {% if user_changeopenid %}{# hack to check if openid is enabled #} {% include "authopenid/login_box.html" %} {% else %} {% include "simpleauth/login_box.html" %} {% endif %}
{% endif %}

{% trans "Transifex is a service aimed at helping translators keep track of their favourite translation projects." %}

{% include "search_form.html" %}

{% url project_list as project_list %}

{% blocktrans %}You could also browse through all projects.{% endblocktrans %}

{% include "projects/project_latests.html" %}
{% endblock %}