{% extends 'base.html' %} {% block title %}Home{% endblock %} {% set homeLink = 'active' %} {% block content %}

{{ cfg.instance.title }}

{{ cfg.instance.description }}
{% if cfg.lockInbox == false %}

Ask a question

{% else %}

New questions cannot be asked right now.

{% endif %}
{% if combined %}
{% if cfg.showQuestionCount == true %}

{{ len(combined) }} question(s)

{% endif %}
{% for item in combined %}
{% if item.question.from_who %} {{ item.question.from_who }} {% else %} {{ cfg.anonName }} {% endif %}
{{ formatRelativeTime(str(item.question.creation_date)) }}
{{ item.question.content | render_markdown }}
{% for answer in item.answers %}
{{ answer.content | render_markdown }}
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}