mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +00:00
15 lines
302 B
HTML
15 lines
302 B
HTML
{% extends "base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% crispy form form.helper %}
|
|
|
|
{% for post in timeline_posts %}
|
|
{% include "activities/_post.html" %}
|
|
{% empty %}
|
|
No posts yet.
|
|
{% endfor %}
|
|
{% endblock %}
|