mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00:00
DEV: Re-add above-static and below-static outlets (#21635)
They were a part of now-removed static template
This commit is contained in:
parent
7444ab006d
commit
edbfe91623
@ -1,7 +1,9 @@
|
|||||||
<DSection @bodyClass="static-{{this.model.path}}" @class="container">
|
<DSection @bodyClass="static-{{this.model.path}}" @class="container">
|
||||||
<WatchRead>
|
<WatchRead>
|
||||||
<div class="contents clearfix body-page">
|
<div class="contents clearfix body-page">
|
||||||
|
<PluginOutlet @name="above-static" />
|
||||||
{{html-safe this.model.html}}
|
{{html-safe this.model.html}}
|
||||||
|
<PluginOutlet @name="below-static" />
|
||||||
</div>
|
</div>
|
||||||
</WatchRead>
|
</WatchRead>
|
||||||
</DSection>
|
</DSection>
|
@ -2,9 +2,13 @@
|
|||||||
<div class="contents clearfix body-page">
|
<div class="contents clearfix body-page">
|
||||||
<div class="login-welcome">
|
<div class="login-welcome">
|
||||||
<PluginOutlet @name="above-login" @outletArgs={{hash model=this.model}} />
|
<PluginOutlet @name="above-login" @outletArgs={{hash model=this.model}} />
|
||||||
|
<PluginOutlet @name="above-static" />
|
||||||
|
|
||||||
<div class="login-content">
|
<div class="login-content">
|
||||||
{{html-safe this.model.html}}
|
{{html-safe this.model.html}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<PluginOutlet @name="below-static" />
|
||||||
<PluginOutlet @name="below-login" @outletArgs={{hash model=this.model}} />
|
<PluginOutlet @name="below-login" @outletArgs={{hash model=this.model}} />
|
||||||
|
|
||||||
<div class="body-page-button-container">
|
<div class="body-page-button-container">
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
<DSection @bodyClass="static-privacy" @class="container">
|
<DSection @bodyClass="static-privacy" @class="container">
|
||||||
<div class="contents clearfix body-page">
|
<div class="contents clearfix body-page">
|
||||||
|
<PluginOutlet @name="above-static" />
|
||||||
{{html-safe this.model.html}}
|
{{html-safe this.model.html}}
|
||||||
|
<PluginOutlet @name="below-static" />
|
||||||
</div>
|
</div>
|
||||||
</DSection>
|
</DSection>
|
@ -1,5 +1,7 @@
|
|||||||
<DSection @bodyClass="static-tos" @class="container">
|
<DSection @bodyClass="static-tos" @class="container">
|
||||||
<div class="contents clearfix body-page">
|
<div class="contents clearfix body-page">
|
||||||
|
<PluginOutlet @name="above-static" />
|
||||||
{{html-safe this.model.html}}
|
{{html-safe this.model.html}}
|
||||||
|
<PluginOutlet @name="below-static" />
|
||||||
</div>
|
</div>
|
||||||
</DSection>
|
</DSection>
|
Loading…
x
Reference in New Issue
Block a user