diff --git a/symposion_project/templates/homepage.html b/symposion_project/templates/homepage.html new file mode 100644 index 0000000000000000000000000000000000000000..962af38996f133a37cc1b1fec0a465a56b66b96e --- /dev/null +++ b/symposion_project/templates/homepage.html @@ -0,0 +1,44 @@ +{% extends "banner_base.html" %} + +{% load i18n %} +{% load ifsetting_tag %} + +{% block head_title %}{% trans "Welcome" %}{% endblock %} + +{% block body_class %}home{% endblock %} + +{% block banner %} +

{% 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 %} +

+ +

About Account Project

+

+ {% blocktrans %} + This project takes the zero_project and adds basic account management + functionality such as sign up, log in, password change/reset and email + confirmation. It is a foundation suitable for most sites that have user + accounts. + {% 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 Log In or Sign Up to try out the site.{% endblocktrans %}

+ {% else %} +

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

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