summaryrefslogtreecommitdiff
path: root/templates/_feed_partial.html
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2026-05-14 01:31:34 -0700
committerTyler Hoang <tyler@tylerhoang.xyz>2026-05-14 01:31:34 -0700
commitcdd28b6c0a3a6444b9ae79b123fe4fa7401de5ab (patch)
tree6e04f0ca2d05825d98a1c78b56eb7c30752b4657 /templates/_feed_partial.html
parent4279408876268f4960c98492d3814f5475e36e38 (diff)
Refine Lumi layouts and public profile
Diffstat (limited to 'templates/_feed_partial.html')
-rw-r--r--templates/_feed_partial.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/templates/_feed_partial.html b/templates/_feed_partial.html
index e22cdde..47800be 100644
--- a/templates/_feed_partial.html
+++ b/templates/_feed_partial.html
@@ -1,10 +1,14 @@
{% if active_shelf == 'diary' and grouped_films %}
{% for group in grouped_films %}
<div class="month-group" data-month="{{ group.month }}">
- <p class="month-label">{{ group.month }}</p>
- {% for film in group.films %}
- {% include "_film_card.html" %}
- {% endfor %}
+ <div class="month-rail">
+ <p class="month-label">{{ group.month }}</p>
+ </div>
+ <div class="month-stack">
+ {% for film in group.films %}
+ {% include "_film_card.html" %}
+ {% endfor %}
+ </div>
</div>
{% endfor %}
{% else %}