Files
2015-GCAT/Rails/app/views/layouts/application.html.erb
T

27 lines
757 B
Plaintext
Raw Normal View History

2015-04-10 15:12:45 -05:00
<!DOCTYPE html>
<html>
<head>
<title>GCAT</title>
<%= favicon_link_tag "/favicon.ico" %>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<nav id="nav-bar" class="navbar navbar-default" role="navigation">
<h1>GCAT</h1>
</nav>
<div>
<div id='contents'>
<%= yield %>
</div>
<div id='footer' style='float:right; padding: 5px;'>
Copyright &copy; 2012 The Board of Regents of the University of Wisconsin System
<%= image_tag 'lgplv.jpg' %>
<%= image_tag 'GLBRC_horz_cmyk_small.jpg' %>
2015-06-26 15:04:35 -05:00
<%= image_tag 'DOE_Logo_Color.png', :size => "292x72" %>
2015-04-10 15:12:45 -05:00
</div>
</div>
</body>
</html>