{% extends 'base.html' %} {% block content %} {% load markdown_extras %}
Latest Posts
{% for post in posts %}
{{ post.author.username }} @{{ post.author.id }}

{{ post.content | markdown | safe }}

{% endfor %}
Trending Topics
    {% for topic in topics %}
  • {{ topic }}
  • {% endfor %}
{% if user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% endblock %}