teddim/gCamp

View on GitHub
app/views/layouts/public.html.erb

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
  <head>
    <title>GCamp</title>
    <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
    <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
    <%= csrf_meta_tags %>
  </head>

  <body>
    <nav class="navbar navbar-inverse navbar-fixed-top">
      <div class="container">
        <%= link_to 'gCamp', root_path, class:"navbar-brand" %>

        <% if current_user %>
          <ul class = "nav navbar-nav navbar-right">
            <li> <%= link_to "#{current_user.first_name} #{current_user.last_name}", user_path(current_user) %></li>
            <li> <%= link_to 'Sign Out', signout_path %></li>
          </ul>
        <% else %>
          <ul class = "nav navbar-nav navbar-right">
            <li> <%= link_to 'Sign Up', signup_path %> </li>
            <li> <%= link_to 'Sign In', signin_path %> </li>
          </ul>
        <% end %>
      </div>
    </nav>
    <div class="container">
        <% if flash[:notice] %>
          <div class="alert alert-success">
            <%= flash[:notice] %>
          </div>
        <% end %>
          <%= yield %>
    </div>
    <div class="container">
      <div class="page-header">
      </div>

      <footer class = "container">
        <div class="navbar-left">
          <%= link_to 'About', about_path(@about) %> |
          <%= link_to 'Terms', terms_path(@terms) %> |
          <%= link_to 'FAQ', faq_path(@faq) %>
          <% if current_user %>
            |
            <%= link_to 'Users', users_path %> |
            <%= link_to 'Projects', projects_path %>
          <% end %>
        </div>

        <div class="navbar-right">
          <%= link_to "http://www.linkedin.com/in/teddimaull/" do%>
            <%= image_tag "linkedin.jpg", height:"32" %>
          <% end %>

          <%= link_to "http://github.com/teddim" do%>
            <%= image_tag "github.png" , height:"32"  %>
          <% end %>

          <%= link_to "http://twitter.com/teddimaull" do%>
            <%= image_tag "twitter.png", height:"32"  %>
          <% end %>

          <%= link_to "https://students.gschool.it/students/292" do%>
            <%= image_tag "galvanize.png", height:"32" %>
          <% end %>
        </div>
      </footer>
    </div>

  </body>
</html>