mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
Support for HTML builders on the no-ember view
This commit is contained in:
parent
0e2b9d3c10
commit
1c56e1c063
|
@ -11,9 +11,11 @@
|
|||
|
||||
<%= theme_lookup("head_tag") %>
|
||||
<%= yield(:no_ember_head) %>
|
||||
<%= raw build_plugin_html 'server:before-head-close' %>
|
||||
</head>
|
||||
<body <% if @custom_body_class %>class="<%= @custom_body_class %>"<% end %>>
|
||||
<%= theme_lookup("header") %>
|
||||
<%= raw build_plugin_html 'server:header' %>
|
||||
<section id='main'>
|
||||
<%= render partial: 'header' %>
|
||||
<div id="main-outlet" class="<%= @container_class ? @container_class : 'wrap' %>">
|
||||
|
@ -21,5 +23,7 @@
|
|||
</div>
|
||||
</section>
|
||||
<%= theme_lookup("footer") %>
|
||||
<%= raw build_plugin_html 'no-client:footer' %>
|
||||
<%= raw build_plugin_html 'server:before-body-close' %>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue
Block a user