Skip to content

Instantly share code, notes, and snippets.

@FrankHald
Created January 24, 2016 14:38
Show Gist options
  • Save FrankHald/fc1ca27e46aed435d219 to your computer and use it in GitHub Desktop.
Save FrankHald/fc1ca27e46aed435d219 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Titel</title>
<%= favicon_link_tag %>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<!-- google maps -->
<script src="//maps.google.com/maps/api/js?v=3.18&sensor=false&client=&key=&libraries=geometry&language=&hl=&region="></script>
<script src="https://maps.googleapis.com/maps/api/jsvv=3.exp&sensor=false&libraries=places"></script>
<script src="//google-maps-utility-library-v3.googlecode.com/svn/tags/markerclustererplus/2.0.14/src/markerclusterer_packed.js"></script>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render 'shared/navbar' %>
<div class="container">
<% if flash[:notice] %>
<div class="notice"><%= flash[:notice] %></div>
<div class="alert"><%= flash[:alert] %></div>
<% end %>
<%= yield %>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment