discourse/app/views/layouts/publish.html.erb
Martin Brennan 77a009397b
FIX: Broken hashtags on embed and publish pages (#24210)
Since we don't have icons or access to the JS that transforms
hashtag icon placeholders into their proper icons and colours
on embed and publish pages, we need to at least show _something_
and make sure the hashtags are not totally broken on these pages.
2023-11-02 11:43:55 +10:00

18 lines
531 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= @topic.title %> - <%= SiteSetting.title %></title>
<%= render partial: "layouts/head" %>
<%= render partial: "common/discourse_publish_stylesheet" %>
<%= render_google_tag_manager_head_code %>
<%= render_google_universal_analytics_code %>
<%= preload_script 'publish' %>
</head>
<body class="<%= @body_classes.to_a.join(' ') %>">
<%= theme_lookup("header") %>
<%= yield %>
<%= theme_lookup("footer") %>
</body>
</html>