2013-12-31 14:37:43 -05:00
|
|
|
<!DOCTYPE html>
|
2017-05-08 13:00:15 -04:00
|
|
|
<html<%= raw @embeddable_css_class -%>>
|
2013-12-31 14:37:43 -05:00
|
|
|
<head>
|
2015-09-18 16:12:41 -04:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2018-08-08 00:46:34 -04:00
|
|
|
<%= discourse_stylesheet_link_tag 'embed', theme_ids: nil %>
|
2015-08-06 17:18:00 -04:00
|
|
|
<%- unless customization_disabled? %>
|
2017-04-13 22:44:22 -04:00
|
|
|
<%= discourse_stylesheet_link_tag :embedded_theme %>
|
2015-08-06 17:18:00 -04:00
|
|
|
<%- end %>
|
2017-04-17 11:52:43 -04:00
|
|
|
<%= preload_script 'break_string' %>
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2015-09-18 16:12:41 -04:00
|
|
|
<%- if @topic_view && @topic_view.page_title.present? %>
|
|
|
|
<title><%= @topic_view.page_title %> - <%= SiteSetting.title %></title>
|
|
|
|
<%- end %>
|
|
|
|
|
2018-11-22 10:02:58 -05:00
|
|
|
<meta id="data-embedded" data-referer="<%= request.referer %>">
|
|
|
|
<%= preload_script 'embed-application' %>
|
2014-01-03 14:45:22 -05:00
|
|
|
|
2018-11-22 10:02:58 -05:00
|
|
|
<%= yield :head %>
|
2013-12-31 14:37:43 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<%= yield %>
|
|
|
|
</body>
|
2014-03-20 10:57:18 -04:00
|
|
|
</html>
|