{% set hide_left_bar = True %} {% set show_right_bar = True %} {% extends g.theme.master %} {% block title %}{{c.project.homepage_title}}{% endblock %} {% block header %}{{c.project.homepage_title}}{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{c.project.description_html|safe}}
{% for div in layout %}
{% for w in div.content %}{{w|safe}}{% endfor %}
{% endfor %}
{{c.screenshot_list.display(project=c.project)}} {% endblock %} {% block right_content %} {% if c.project.accolades %}
Awards: {% for accolade in c.project.accolades %} {{accolade.award.short}} {% else %} No Awards {% endfor %}
{% endif %} {% if c.project.labels and not (c.project.labels|length == 1 and c.project.labels[0]=='') %}
Labels: {% for label in c.project.labels %} {{label}} {% endfor %}
{% endif %}
Developers: {% for u in c.project.users() %} {{lib.gravatar(u, size=24)}} {% endfor %}
{% endblock %} {% block extra_js %} {% if c.project.best_download_url() %} {% endif %} {% endblock %}