{% extends "base.html" %} {% block nav_home %}active{% endblock %} {% block header %}

{{ locale.text("name").unwrap() }}

{% if is_live %} {% endif %} {% if listenbrainz.is_scrobbling %} {{ locale.text("now-playing").unwrap() }}: {{ listenbrainz.song.clone().unwrap_or_default() }} - {{ listenbrainz.artist.clone().unwrap_or_default() }} {% endif %}
{% endblock header %} {% block content %} {% for post in feed %} {% match post %} {% when HomeFeedItem::Blogpost(blogpost) %} {% include "blogpost-panel.html" %} {% when HomeFeedItem::Poem(poem) %} {% include "poem-panel.html" %} {% endmatch %} {% endfor %} {% endblock content %} {% block aside %} {% endblock aside %}