{% extends 'base.html' %} {% block title %}Course Blogs by Startup{% endblock title %} {% block head %} {% endblock head %} {% block body %} {% load humanize %}

Course Blogs by Startup


{% for post in allposts %}
Article by {{ post.author }}
{{ post.title }}
{{ post.timeStamp | naturaltime }}

{{ post.content| truncatechars:200 }}

Read More...

{% endfor %}
{% endblock body %}