mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
38f50d3bcc
You get an instant double request if you allow rendering of "" as a favicon or apple touch icon.
14 lines
915 B
Text
14 lines
915 B
Text
<meta name="author" content="">
|
|
<meta name="generator" content="Discourse <%= Discourse::VERSION::STRING %> - https://github.com/discourse/discourse version <%= Discourse.git_version %>">
|
|
<%- if SiteSetting.favicon_url.present? %>
|
|
<link rel="icon" type="image/png" href="<%=SiteSetting.favicon_url%>">
|
|
<%- end %>
|
|
<%- if SiteSetting.apple_touch_icon_url.present? %>
|
|
<link rel="apple-touch-icon" type="image/png" href="<%=SiteSetting.apple_touch_icon_url%>">
|
|
<%- end %>
|
|
<%- if (SiteSetting.apple_touch_icon_url != "/images/default-apple-touch-icon.png") && SiteSetting.apple_touch_icon_url.present? %>
|
|
<link rel="icon" sizes="144x144" href="<%=SiteSetting.apple_touch_icon_url%>">
|
|
<%- end %>
|
|
<meta name="theme-color" content="#<%= ColorScheme.hex_for_name('header_background') %>">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes">
|
|
<%= canonical_link_tag %>
|