ciawalsh/iamME

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

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
  <head>
    <title>IamME</title>
    <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
    <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
    <link href="/assets/ME.jpg" rel="shortcut icon" type="image" />
    <link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
    <%= csrf_meta_tags %>
  </head>

  <body class="landing-page">

      <p class="notice" style="text-align: center;"><%= notice %></p>
      <p class="alert" style="text-align: center;"><%= alert %></p>

      <%= yield %>

  </body>

</html>