{% extends 'home/base/base.html' %} {% block title %} {{catagory.name}} | MultiBlogs {% endblock %} {% block body %} {% if catagory %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
Featured in {{ catagory.name }}

{{ f_post.title }}

{{ f_post.detail |truncatechars:100 }}

{% if f_post.author.author_image %} {% else %} {% endif %} {{ f_post.author.author.username }}
{{f_post.created_at|timesince }} ago ; {{ f_post.visit_count}} views
Latest
{% for p in post %}

{{ p.title }}

{{ p.detail |truncatechars:100 }}

{% if p.author.author_image %} {% else %} {% endif %} {{ p.author.author.username }} in {{ p.catagories }}
{{p.created_at|timesince }} ago ; {{ p.visit_count}} views
{% endfor %} {% if post %}
{% endif %}
Popular in {{ catagory.name }}
Become a member
Get the latest news right in your inbox. It's free and you can unsubscribe at any time. We hate spam as much as we do, so we never spam!
{% csrf_token %}
{% else %}

Sorry , No Post Found Under the {{ catagory.name }}

{% endif %} {% endblock %}