This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/application.hbs
Aeden McGarry 1f57c7a510 Added plugin outlets above post in topic stream and above and below footer (#4104)
* Added new plugin outlets above and below footer

* Added plugin outlet in topic above the user

* Renamed plugin outlet to be better suited to position
2016-04-11 14:15:00 -04:00

24 lines
439 B
Handlebars

{{render "header"}}
<div id="main-outlet" class="wrap">
<div class="container">
{{#if showTop}}
{{custom-html "top"}}
{{/if}}
{{global-notice}}
{{create-topics-notice}}
</div>
{{outlet}}
{{render "user-card"}}
</div>
{{plugin-outlet "above-footer"}}
{{#if showFooter}}
{{custom-html "footer"}}
{{/if}}
{{plugin-outlet "below-footer"}}
{{render "modal"}}
{{render "topic-entrance"}}
{{render "composer"}}