{% extends "base.html" %} {% block title %}Recursos — open-cognition{% endblock %} {% block content %}

Recursos

{% if resources %}
{% for res in resources %}
{{ res.type }} {{ res.title }}
{% if res.type in ['link', 'pdf', 'video'] %} abrir {% endif %}
{% if res.type == 'markdown' %}
{{ res.content_or_url[:300] }}{% if res.content_or_url|length > 300 %}...{% endif %}
{% else %}

{{ res.content_or_url }}

{% endif %} {% if res.created %}

{{ res.created.strftime('%d/%m/%Y %H:%M') }}

{% endif %}
{% endfor %}
{% else %}

Nenhum recurso encontrado.

{% endif %} {% endblock %}