{% extends "site/layout/base_workspace.html" %} {% load com %} {% load i18n %} {% load local_perms %} {% load activity %} {% block head %} {% endblock %} {% block title %}{% blocktrans %}Home{% endblocktrans %}{% endblock %} {% block content %}

{% if CONF.f_get_logo_url %}
{% endif %} {% if CONF.workspace_name %} {{ CONF.workspace_name }} {% endif %}

{% if object_list %}

{% blocktrans count public_texts_nb as counter %}One public text{% plural %}{{ counter }} public texts{% endblocktrans %}

    {% for text in object_list %}
  • {{ text.title }}
    {% include "site/macros/text_meta.html" %}
  • {% endfor %}
{% include "site/macros/paginator.html" %}
{% include "site/login_form.html" %}
{% else %} {% include "site/login_form.html" %} {% endif %} {% endblock %}