Skip to content

Instantly share code, notes, and snippets.

@wvuwebgist
Created May 1, 2012 14:42
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 wvuwebgist/2568421 to your computer and use it in GitHub Desktop.
Save wvuwebgist/2568421 to your computer and use it in GitHub Desktop.
Show content before, after, or during a certain date & time
<%# Show something before May 2nd at 8:30am %>
<% show_before 'May 2, 2012 8:30 AM' do %>
<p>Your content here<p>
<% end %>
<%# Show something between May 2nd and May 3rd %>
<% show_between('May 2, 2012 8:30 AM', 'May 3, 2012 8:30 AM') do %>
<p>Your content here</p>
<% end %>
<%# Show something after May 2nd at 8:30am %>
<% show_after 'May 2, 2012 8:30 AM' do %>
<p>Your content here<p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment