devel #283

Merged
inhji merged 3 commits from devel into main 2023-09-08 12:41:05 +02:00
Showing only changes of commit 5f7be6aca1 - Show all commits

View file

@ -9,13 +9,13 @@
<section class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-3 max-w-4xl mx-auto">
<section class="col-span-1 md:col-span-2">
<%= if @channel.layout == :default do %>
<.note_list_default notes={@channel.notes}/>
<.note_list_default notes={@notes}/>
<% end %>
<%= if @channel.layout == :gallery do %>
<.note_list_gallery notes={@channel.notes}/>
<.note_list_gallery notes={@notes}/>
<% end %>
<%= if @channel.layout == :microblog do %>
<.note_list_microblog notes={@channel.notes}/>
<.note_list_microblog notes={@notes}/>
<% end %>
</section>