Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrsweaters/67c59bbd7484ea6756d9 to your computer and use it in GitHub Desktop.
Save mrsweaters/67c59bbd7484ea6756d9 to your computer and use it in GitHub Desktop.
rub calendar
<ul class="large-block-grid-7">
<% month = (params[:month] || Date.today.month).to_i %>
<% first_day_of_week = DateTime.new(2014, month, 01).strftime('%w').to_i.times.each do |i| %>
<li>blank</li>
<% end %>
<% Time.days_in_month(month, 2014).times.each do |i| %>
<li><%= Date.new(2014, month, 01) + i.day %>
<% end %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment