mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 22:23:44 +08:00
77a009397b
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.
18 lines
531 B
Plaintext
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>
|