{% extends "base.html" %} {% load static %} {% block title %} {{ category.title }} {% endblock title %} {% block content %}
{{ featured_post.title }}

{{ featured_post.title }}

{% for post in posts %}
{{ post.title }}

{{ post.title }}

{{ post.content|truncatewords:25 }}

{% endfor %}

Most Read

{% for post in most_read_posts %}
{{ post.title }}

{{ post.title }}

{% endfor %}
{% endblock %}