impuls/templates/post.html

15 lines
401 B
HTML
Raw Normal View History

2023-10-03 16:51:46 +02:00
{% extends 'base.html' %}
{% block title %}{{ post.title }} - {{block.super}}{% endblock title %}
{% load markdown_extras %}
{% block content %}
<div class="dc-container">
<h1 class="dc-xxxlarge dc-center">{{ post.title }}</h1>
<h2 class="dc-large dc-center">Autor: {{ post.author }}</h2>
<div class="dc-container dc-medium">
{{ post.content | markdown | safe}}
</div>
</div>
{% endblock content %}