All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 52s
Social blueprint with timeline, compose, search, follow/unfollow, like/boost interactions, and notifications. Inbox handler extended for Create/Update/Delete/Accept/Like/Announce with notification creation. HTMX-powered infinite scroll and interaction buttons. Nav updated with Timeline, Public, Search, and Notifications links. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
602 B
HTML
20 lines
602 B
HTML
{% extends "federation/base.html" %}
|
|
|
|
{% block title %}{{ "Home" if timeline_type == "home" else "Public" }} Timeline — Rose Ash{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="flex items-center justify-between mb-6">
|
|
<h1 class="text-2xl font-bold">{{ "Home" if timeline_type == "home" else "Public" }} Timeline</h1>
|
|
{% if actor %}
|
|
<a href="{{ url_for('social.compose_form') }}"
|
|
class="bg-stone-800 text-white px-4 py-2 rounded hover:bg-stone-700">
|
|
Compose
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div id="timeline">
|
|
{% include "federation/_timeline_items.html" %}
|
|
</div>
|
|
{% endblock %}
|