Created
August 20, 2015 19:13
-
-
Save notyoyoma/99055d742173c2efa93d 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
| <% if params[:back_to_school] %> | |
| <h4 class="side-nav__title">Back to School:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_back_to_school_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:dog_days] %> | |
| <h4 class="side-nav__title">Dog Days of Summer:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_party_station_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:party_station] %> | |
| <h4 class="side-nav__title">Party Station:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_party_station_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:fast_and_easy] %> | |
| <h4 class="side-nav__title">Fast & Easy DIY Gifts Featuring:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_fast_and_easy_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:get_organized] %> | |
| <h4 class="side-nav__title">Get Organized:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_get_organized_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:style_with_tile] %> | |
| <h4 class="side-nav__title">Style With Tile:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_style_with_tile_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> | |
| <% if params[:build_for_today] %> | |
| <h4 class="side-nav__title">Build For Today:</h4> | |
| <ul class="side-nav"> | |
| <% @celebrities.each do |c| %> | |
| <li class="row" style="padding-bottom:.5em"> | |
| <span class="large-4 column"><%= link_to image_tag(c.avatar.small.url), user_profile_path(c.profile_url) %></span> | |
| <span class="large-8 column"><%= link_to c.screenname, project_build_for_today_celebrity_path(c.profile_url), :class => "subheader" %></span> | |
| </li> | |
| <% end %> | |
| </ul> | |
| <% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment