23 lines
847 B
Plaintext
23 lines
847 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title><%= "#{yield(:title)} — " if content_for?(:title) %>快点</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="<%= content_for?(:title) ? yield(:title) : "Create dynamic maps, analyze and build location-aware and geospatial applications with your data using the power of PostGIS in the cloud." %>">
|
|
<%= favicon_link_tag "favicons/favicon.ico" %>
|
|
<%= stylesheet_link_tag "sessions" %>
|
|
<%= yield :css %>
|
|
<%= csrf_meta_tag %>
|
|
<%= insert_google_tag_manager('primary') %>
|
|
<%= yield :head %>
|
|
</head>
|
|
<body class="frontend">
|
|
<%= insert_google_tag_manager_no_script('primary') %>
|
|
<%= yield %>
|
|
<%= insert_trackjs() %>
|
|
<%= yield :js %>
|
|
</body>
|
|
</html>
|