OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/common/_favicons.html.erb

18 lines
553 B

<% begin %>
<% unless apply_custom_favicon? %>
<%= favicon_link_tag OpenProject::CustomStyles::Design.favicon_asset_path %>
<% end %>
<% unless apply_custom_touch_icon? %>
<%# In the future we can add more sizes should we see 404 errors in the logs. %>
<%= favicon_link_tag "apple-touch-icon-120x120.png", rel: 'apple-touch-icon',
type: 'image/png',
sizes: "120x120" %>
<% end %>
<% rescue => e
binding.pry
warn e
end
%>