{% extends "components/base.html" %} {% load static %} {% load html_truncate %} {% load safe_html %} {% block title %}Blog{% endblock %} {% block content %} Blog Últimas publicaciones y novedades {% for post in posts %} {% if post.image %} {% else %} {% endif %} {{ post.published_at|date:"d M Y" }} {{ post.title }} {{ post.author.get_full_name }} / {{ post.category.name }} {{ post.content|truncate_html_words:25|safe_html }} Leer Más {% empty %} No hay publicaciones aún. {% endfor %} {% if is_paginated %} {% if page_obj.has_previous %} Anterior {% endif %} Página {{ page_obj.number }} de {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Siguiente {% endif %} {% endif %} {% endblock %}
{{ post.content|truncate_html_words:25|safe_html }}
No hay publicaciones aún.