<%= d.year() %>日<%= (d.month() + 1) %>月
<% _.each(daysOfTheWeek, function(day, i) { %>
<% if(i % 7 === 0) { %>
<% } else if(i % 7 === 6) { %>
<% } else { %>
<% } %>
<% }); %>
<% _.each(days, function(day, i) { %>
<% if(i % 7 === 0) day.classes += ' sun' %>
<% if(i % 7 === 6) day.classes += ' sat' %>
<%= day.day %>
<% if(day.events.length >= 1) { %>
<% _.each(day.events, function(event) { %>
<% }); %>
<% } %>
<% }); %>