1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-03 21:33:48 +00:00

Created about page

This commit is contained in:
2015-11-30 15:18:03 +00:00
parent 940782f95d
commit ce2e80a2b4
5 changed files with 54 additions and 8 deletions

View File

@@ -1,11 +1,11 @@
<footer class="footer">
<br>
<small>
App made by Jacob Cody Wimer - jacob.wimer@gmail.com
</small>
<nav>
<ul>
<!-- <li><%= link_to "About", '#' %></li> -->
<!-- <li><%= link_to "Contact", '#' %></li> -->
</ul>
</nav>
<br>
<small>
&copy; 2015 wrestlingdev.com
</small>
</footer>

View File

@@ -10,9 +10,10 @@
<li><%= link_to "Results" , "/tournaments/#{@tournament.id}/results" %></li>
<li><%= link_to "Team Scores" , "/tournaments/#{@tournament.id}/team_scores" %></li>
<% end %>
<li><%= link_to "About", "/static_pages/about" %></li>
<% if user_signed_in? %>
<li><%=link_to "Log out", destroy_user_session_url ,:method => 'delete' %></li>
<li><%=link_to "Edit user", edit_user_registration_path %></li>
<li><%=link_to "Edit user", edit_user_registration_path %></li>
<% else %>
<li><%= link_to "Log In" , new_user_session_path %></li>
<% end %>

View File

@@ -33,8 +33,10 @@
</div>
</div>
</div>
<%= render 'layouts/footer' %>
</div>
</body>
<% end %>
</html>