Files
indiekit-endpoint-microsub/views/partials/timeline.njk
Ricardo 4a87773d7f chore: phase 2 convention alignment — ms- prefix, onerror removal, visually-hidden fix (v1.0.46)
- Namespace all plugin CSS classes with ms- prefix (20 BEM blocks)
- Update all 19 templates to match prefixed class names
- Replace visually-hidden with -!-visually-hidden (core convention)
- Remove inline onerror handlers from avatar/photo images
- Remove dead source-type SVG icons (Fediverse/Bluesky/Web)

Confab-Link: http://localhost:8080/sessions/bb4a6ec4-b711-48cd-b3d7-942ec2a9851d
2026-03-13 12:32:08 +01:00

11 lines
249 B
Plaintext

{# Timeline of items #}
<div class="ms-timeline">
{% if items.length > 0 %}
{% for item in items %}
{% include "partials/item-card.njk" %}
{% endfor %}
{% else %}
{{ prose({ text: __("microsub.timeline.empty") }) }}
{% endif %}
</div>