{% load lyric_extras %}
{# My Posts applet row — title | latest line text | latest line ts. #}
{# `item` is a Post w. `latest_line` attached by `_recent_posts`. #}
{{ item.title|truncate_title }}
{% if item.latest_line %}
{# `display_text` strips the `[] ` prefix that #}
{# TAX_LEDGER Lines carry to satisfy `unique_together = (post, text)` #}
{# — the per-line `created_at` slot below already renders the user- #}
{# facing timestamp (user-spec 2026-05-26). Identity for other kinds. #}
{{ item.latest_line.display_text|striptags }}
{% endif %}