Genesis
This commit is contained in:
14
app/views/home/index.erb
Normal file
14
app/views/home/index.erb
Normal file
@@ -0,0 +1,14 @@
|
||||
<%
|
||||
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>
|
||||
Reference in New Issue
Block a user