adopt-a-hydrant/app/views/layouts/application.html.erb

17 lines
527 B
Plaintext
Raw Normal View History

2011-02-14 18:28:51 +00:00
<!DOCTYPE html>
<html>
2011-02-14 18:49:00 +00:00
<head>
2011-02-23 22:24:08 +00:00
<title>Adopt a Hydrant</title>
2011-02-14 18:49:00 +00:00
<%= stylesheet_link_tag "main" %>
2011-02-14 20:27:18 +00:00
<%= javascript_include_tag "http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" %>
2011-02-14 18:49:00 +00:00
<%= javascript_include_tag "http://maps.google.com/maps/api/js?sensor=false" %>
2011-02-14 20:27:18 +00:00
<%= javascript_include_tag "maps" %>
2011-02-25 20:34:39 +00:00
<%= javascript_include_tag "snowstorm" %>
2011-02-14 18:49:00 +00:00
<%= csrf_meta_tag %>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
</head>
2011-02-14 20:27:18 +00:00
<body>
2011-02-14 18:49:00 +00:00
<%= yield -%>
</body>
2011-02-14 18:28:51 +00:00
</html>