This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/activities/home.html

33 lines
922 B
HTML
Raw Normal View History

2022-11-05 21:17:27 +01:00
{% extends "base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
2022-11-14 00:14:38 +01:00
{% include "activities/_home_menu.html" %}
2022-11-05 21:17:27 +01:00
2022-11-14 00:14:38 +01:00
<section class="columns">
2022-11-05 21:17:27 +01:00
2022-11-14 00:14:38 +01:00
<div class="left-column">
{% for post in timeline_posts %}
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
</div>
<div class="right-column">
<h2>Compose</h2>
<form action="." method="POST" class="compose">
{% csrf_token %}
{{ form.text }}
{{ form.content_warning }}
<div class="buttons">
<span class="button toggle" _="on click toggle .enabled then toggle .hidden on #id_content_warning">CW</span>
<button>Post</button>
</div>
</form>
</div>
</section>
2022-11-05 21:17:27 +01:00
{% endblock %}