Add page title and charset to embedded HTML
This commit is contained in:
parent
49fc4571b0
commit
71bac0c342
|
@ -39,13 +39,14 @@
|
|||
<%- end %>
|
||||
|
||||
<% if @topic_view.topic.posts_count > 0 %>
|
||||
<footer>
|
||||
<footer class="clearfix">
|
||||
<%= link_to(image_tag(SiteSetting.logo_url, class: 'logo'), Discourse.base_url, target: '_blank') %>
|
||||
<%= link_to(I18n.t('embed.continue'), @topic_view.posts.last.url, class: 'button', target: '_blank') %>
|
||||
<%- if @posts_left > 0 %>
|
||||
<span class='replies'><%= I18n.t('embed.more_replies', count: @posts_left) %></span>
|
||||
<%- end %>
|
||||
<%= link_to(image_tag(SiteSetting.logo_url, class: 'logo'), Discourse.base_url, target: '_blank') %>
|
||||
</footer>
|
||||
<div class="clearfix"></div>
|
||||
<% end %>
|
||||
|
||||
<% end %>
|
||||
|
|
|
@ -1,12 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<%= stylesheet_link_tag 'embed' %>
|
||||
<%- unless customization_disabled? %>
|
||||
<%= SiteCustomization.custom_stylesheet(session[:preview_style], :embedded) %>
|
||||
<%- end %>
|
||||
<%= javascript_include_tag 'break_string' %>
|
||||
|
||||
<%- if @topic_view && @topic_view.page_title.present? %>
|
||||
<title><%= @topic_view.page_title %> - <%= SiteSetting.title %></title>
|
||||
<%- end %>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue