Original version was introduced in 6674873478
and has not been changed since.
Google's PageSpeed Insights tool also flagged this up as an accessibility
issue, since it previously prohibited users zooming into the site.
16 lines
775 B
Text
16 lines
775 B
Text
<%= tag.head :data => application_data do %>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<%= javascript_include_tag "es6" unless browser.es6? %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= javascript_include_tag "i18n/#{I18n.locale}" %>
|
|
<%= stylesheet_link_tag "screen-#{dir}", :media => "screen" %>
|
|
<%= stylesheet_link_tag "print-#{dir}", :media => "print" %>
|
|
<%= stylesheet_link_tag "leaflet-all", :media => "screen, print" %>
|
|
<%= render :partial => "layouts/meta" %>
|
|
<%= yield :head %>
|
|
<%= yield :auto_discovery_link_tag %>
|
|
<%= csrf_meta_tag %>
|
|
<%= csp_meta_tag %>
|
|
<title><%= "#{@title} | " if @title %><%= t "layouts.project_name.title" %></title>
|
|
<% end %>
|