{% extends "base.html" %} {% load i18n %} {% load extra_tags %} {% load humanize %} {% load extra_filters %} {% load smart_if %} {% load cache %} {% block title %}{% spaceless %}{% trans "Home" %}{% endspaceless %}{% endblock %} {% block meta %} {% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% trans "Questions" %}
{% trans "newest" %} {% trans "hottest" %} {% trans "most voted" %} {% trans "all questions" %}
{% include "question_list.html" %}
{% endblock %} {% block sidebar %} {% if not request.user.is_authenticated %}

{% trans "welcome to website" %}

{{ settings.APP_INTRO|safe }}
{% else %} {% include "tag_selector.html" %} {% endif %}

{% trans "Recent tags" %}

{% cache 60 recent_tags %} {% for tag in tags %} {% endfor %} {% endcache %}
{% if awards %}

{% trans "Recent awards" %}

{% endif %}
{% trans "subscribe to the questions feed" %}
{% endblock %} {% block tail %}
{% cnprog_paginator context %}
{% cnprog_pagesize context %}
{% endblock %}