Files
yearly-plan/app/views/home/index.erb
0x8664b2 808ff56abc Genesis
2022-08-23 13:00:54 -07:00

14 lines
309 B
Plaintext

<%
first_days = (1..12).map do |index|
Date.new(@year, index, 1).beginning_of_month
end
%>
<div class="container mx-auto flex justify-between">
<% first_days.each do |first_day| %>
<div class="border-l w-full">
<%= render 'month', first_day: first_day, events: @events %>
</div>
<% end %>
</div>