Created
May 23, 2013 15:59
-
-
Save spacegauch0/5637167 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="day"> | |
| <ul> | |
| <% date = Time.now+1.day %> | |
| <% price = 150 %> | |
| <% 7.times do |i| %> | |
| <% date += 1.day %> | |
| <% price -= 10 %> | |
| <% if date.strftime("%u").to_i > 5 %> | |
| <% date = date+2.day %> | |
| <% end %> | |
| <li class="<%= i==0 ? "first" : "" %> <%= i==3 ? "active" : "" %>" data-price="<%= price %>" data-eta="<%= date.strftime("%a, %b %d") %>"> | |
| <%= date.strftime("%b %d") %> | |
| </li> | |
| <% end %> | |
| </ul> | |
| </div> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OUTPUT