{% extends "fenixedu-learning-theme/base.html" %} {% macro viewPost(post, page, request) %}
{% if post.isVisible %} {% if post.name.content != page.name.content %}
{{ post.name.content }}

{{ post.creationDate|formatDate("d MMMM Y, HH:mm") }} {{post.createdBy.displayName}}

{% endif %}

{{post.excerpt.content | raw}}


{{post.body.content | raw}}

{% if post.attachments.size != 0 %}

{{ i18n('resources.FenixEduLearningResources', 'label.attachments') }}

{% endif %} {% else %}

{{ i18n('CmsExceptionResources', 'label.unautenticated.private.post') }} {{ post.visibilityGroup }}

{% if request.user is empty or not request.user.isAuthenticated %}

Login

{% endif %} {% endif %}
{% endmacro %} {% block contentTitle %} {% endblock contentTitle %} {% block content %} {{ viewPost(post, page, request) }} {% endblock content %}