diff options
Diffstat (limited to 'templates/_feed_partial.html')
| -rw-r--r-- | templates/_feed_partial.html | 12 |
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 %} |
