mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
20 lines
665 B
HTML
20 lines
665 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Home{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for event in events %}
|
|
{% if event.type == "post" %}
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
{% elif event.type == "boost" %}
|
|
<div class="boost-banner">
|
|
<a href="{{ event.subject_identity.urls.view }}">
|
|
{{ event.subject_identity.name_or_handle }}
|
|
</a> boosted
|
|
</div>
|
|
{% include "activities/_post.html" with post=event.subject_post %}
|
|
{% endif %}
|
|
{% empty %}
|
|
Nothing to show yet.
|
|
{% endfor %}
|
|
{% endblock %}
|