Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. <div class="event-calendar">
  3. <table>
  4. <caption>2016年9月</caption>
  5. <tbody>
  6. <tr>
  7. <th>日</th>
  8. <th>月</th>
  9. <th>火</th>
  10. <th>水</th>
  11. <th>木</th>
  12. <th>金</th>
  13. <th>土</th>
  14. </tr>
  15. <% @calendar_days.each_with_index do |day, i| %>
  16. <% if i == 0 || i % 7 == 0 %>
  17. <tr>
  18. <% end %>
  19. <td>
  20. <p>
  21. <%= day %>
  22. </p>
  23. <div>
  24. <!-- ここにカレンダー1日単位で情報埋める -->
  25. </div>
  26. </td>
  27. <% if i != 0 && (i + 1) % 7 == 0 %>
  28. </tr>
  29. <% end %>
  30. <% end %>
  31. </tbody>
  32. </table>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement