{% extends 'base.html' %} {% block content %} {% load markdown_extras %}
Latest Posts
{% for blog in blogs %}

{{ blog.title }}

{{ blog.content | markdown | safe }}

{% endfor %}
Updates
    {% for topic in topics %}
  • {{ topic }}
  • {% endfor %}
{% endblock %}