11 lines
228 B
HTML
11 lines
228 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %} Brutaldon - toot {% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title" >Toot!</h1>
|
||
|
<div class="box">
|
||
|
{% include "main/post_partial.html" %}
|
||
|
</div>
|
||
|
{% endblock %}
|