Sha256: 09165f3b195d0da340474f9f3694bcb26b8810cf309ee8c64f0918bc57d72572
Contents?: true
Size: 868 Bytes
Versions: 13
Compression:
Stored size: 868 Bytes
Contents
<table class="meeting-calendar__month"> <caption><%= month_name %></caption> <thead> <% abbr_day_names.each_with_index do |day, i| %> <th><abbr title="<%= day_names[i] %>"><%= day %></abbr></th> <% end %> </thead> <tbody> <% weeks.each do |days| %> <tr> <% is_first_day = first_day_of_month?(days.first) %> <% if is_first_day %> <% (7 - days.length).times do %> <td></td> <% end %> <% end %> <% days.each do |day| %> <%= content_tag :td, class: day_class(day) do %> <time datetime="<%= day %>"><%= l(day, format: "%d") %></time> <% end %> <% end %> <% if !is_first_day %> <% (7 - days.length).times do %> <td></td> <% end %> <% end %> </tr> <% end %> </tbody> </table>
Version data entries
13 entries across 13 versions & 1 rubygems