{% extends 'home/base/base.html' %} {% block title %} MultiBlogs {% endblock %} {% block body %}

{{ first.title }}

{{first.detail |truncatechars:200 }}

Read More

{{ s_post.title}}

{{s_post.detail|truncatechars:150}}

{% if s_post.author.author_image %} {% else %} {% endif %} {{s_post.author.author.username}} {{ s_post.created_at | timesince }} ago . {{s_post.visit_count}} views
{% for p in last_post %}

{{p.title }}

Jake Bittle in LOVE/HATE
Dec 12 · 5 min read
{% endfor %}
All Stories
{% for p in post %}

{{ p.title }}

{{ p.detail |truncatechars:100 }}

{% if p.author.author_image %} {% else %} {% endif %} {{ p.author.author.username }} in {{ p.catagories.name }}
{{p.created_at|timesince }} ago ; {{ p.visit_count}} views
{% endfor %}
{% endblock %}