mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-25 22:27:18 +10:00
added waves-effect to nav button
This commit is contained in:
parent
11b9e8752a
commit
48e269cbd6
2 changed files with 17 additions and 12 deletions
|
|
@ -28,25 +28,28 @@
|
|||
<div class="background">
|
||||
<img src="images/me_with_mangoes1.jpg">
|
||||
</div>
|
||||
<img src="app/assets/images/me_with_mangoes1.jpg"><br>
|
||||
<img src="app/assets/me_with_mangoes1.jpg" class="responsive-img"><br>
|
||||
</div></li>
|
||||
<li><a href="#!"><i class="material-icons">cloud</i>First Link With Icon</a></li>
|
||||
<li><div class="divider"></div></li>
|
||||
<li><a class="waves-effect" href="#!">Third Link With Waves</a></li>
|
||||
<li><!-- # views/devise/menu/_login_items.html.erb -->
|
||||
<% if user_signed_in? %>
|
||||
<!-- <%= link_to('Logout', destroy_user_session_path, method: :delete) %> -->
|
||||
<% else %>
|
||||
<%= link_to('Login', new_user_session_path) %>
|
||||
<% end %></li>
|
||||
<!-- # views/devise/menu/_login_items.html.erb -->
|
||||
<li>
|
||||
<% if user_signed_in? %>
|
||||
<!-- <%= link_to('Logout', destroy_user_session_path, method: :delete) %> -->
|
||||
<% else %>
|
||||
<%= link_to('Login', new_user_session_path, :class => "waves-effect") %>
|
||||
<% end %></a>
|
||||
</li>
|
||||
|
||||
|
||||
<li><!-- # views/devise/menu/_registration_items.html.erb -->
|
||||
<% if user_signed_in? %>
|
||||
<%= link_to('Edit registration', edit_user_registration_path) %>
|
||||
<%= link_to('Edit registration', edit_user_registration_path, :class => "waves-effect") %>
|
||||
<% else %>
|
||||
<%= link_to('Register', new_user_registration_path) %>
|
||||
<%= link_to('Register', new_user_registration_path, :class => "waves-effect") %>
|
||||
</li>
|
||||
<% end %></li>
|
||||
<li><%= link_to "Mailbox", conversations_path %><br></li>
|
||||
<li><%= link_to("Mailbox", conversations_path, :class => "waves-effect") %><br></li>
|
||||
</ul>
|
||||
<a href="#" data-activates="slide-out" class="button-collapse"><i class="material-icons">menu</i></a>
|
||||
</header>
|
||||
|
|
|
|||
|
|
@ -19,11 +19,13 @@
|
|||
<a class="carousel-item" href="#four!"><img src="<%= listing.photo4_url %>"></a>
|
||||
<a class="carousel-item" href="#five!"><img src="<%= listing.photo5_url %>"></a>
|
||||
</div>
|
||||
<!-- referencing seed file -->
|
||||
<!-- referencing seed file and database -->
|
||||
<%= listing.rent_price_per_week %>
|
||||
<%= listing.number_of_bedrooms %>
|
||||
<%= listing.address %>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$('.carousel.carousel-slider').carousel({fullWidth: true});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue