metamaps--metamaps/app/views/layouts/_head.html.erb

85 lines
2.4 KiB
Plaintext
Raw Normal View History

2016-03-25 04:26:07 +00:00
<!--
Do you want to learn more about web development using Ruby or Javascript?
Metamaps.cc is an open source project, and we are always looking for new
developers to help contribute to our codebase! To get involved, send an
email to team@metamaps.cc or find us on Github at
2016-04-13 02:16:54 +00:00
https://github.com/metamaps/metamaps.
2016-03-25 04:26:07 +00:00
-->
<!DOCTYPE html>
<html>
<head>
2016-08-12 04:04:18 +00:00
<title><%= yield(:title) %></title>
2016-03-25 04:26:07 +00:00
<%= csrf_meta_tags %>
<meta name="viewport" content="width=device-width, user-scalable=no">
2017-01-12 03:26:45 +00:00
<% if controller.class.name == 'MapsController' && @map %>
2017-01-12 04:31:31 +00:00
<meta property="og:title" content="<%= @map.name %>" />
2017-01-12 03:26:45 +00:00
<meta property="og:type" content="website" />
<meta property="og:image" content="<%= @map.screenshot_url %>" />
<meta property="og:description" content="<%= @map.desc %>" />
2017-01-12 04:36:30 +00:00
<meta property="og:url" content="<%= request.original_url %>" />
2017-01-12 03:26:45 +00:00
2017-01-12 04:31:31 +00:00
<meta name="twitter:title" content="<%= @map.name %>" />
2017-01-12 03:26:45 +00:00
<meta name="twitter:image" content="<%= @map.screenshot_url %>" />
<meta name="twitter:description" content="<%= @map.desc %>" />
2017-01-12 04:36:30 +00:00
<meta name="twitter:url" content="<%= request.original_url %>" />
2017-01-12 03:26:45 +00:00
<% end %>
2016-03-25 04:26:07 +00:00
<% if controller_name == 'maps' && action_name == "conversation" %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= stylesheet_link_tag "application-secret", :media => "all" %>
<%= javascript_include_tag "application-secret" %>
<% else %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<% end %>
2016-03-25 04:26:07 +00:00
<!-- typekit for vinyl font -->
<script type="text/javascript" src="https://use.typekit.net/tki2nyo.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<!--[if (IE)]>
<style type="text/css">
#lightbox_overlay {
display: block;
}
#lightbox_main {
top: 50%;
margin-top: -281px;
}
#lightbox_screen {
height: 100%;
opacity: 0.42;
}
.lightboxContent {
display: none;
}
#noIE {
display: block;
}
#lightbox_close {
display: none;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#lightbox_screen").unbind().click(function(event){
event.preventDefault();
event.stopPropagation();
return false;
});
});
</script>
<![endif]-->
</head>