DEV: Re-add above-static and below-static outlets (#21635)

They were a part of now-removed static template
This commit is contained in:
Jarek Radosz 2023-05-18 15:32:15 +02:00 committed by GitHub
parent 7444ab006d
commit edbfe91623
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View File

@ -1,7 +1,9 @@
<DSection @bodyClass="static-{{this.model.path}}" @class="container">
<WatchRead>
<div class="contents clearfix body-page">
<PluginOutlet @name="above-static" />
{{html-safe this.model.html}}
<PluginOutlet @name="below-static" />
</div>
</WatchRead>
</DSection>

View File

@ -2,9 +2,13 @@
<div class="contents clearfix body-page">
<div class="login-welcome">
<PluginOutlet @name="above-login" @outletArgs={{hash model=this.model}} />
<PluginOutlet @name="above-static" />
<div class="login-content">
{{html-safe this.model.html}}
</div>
<PluginOutlet @name="below-static" />
<PluginOutlet @name="below-login" @outletArgs={{hash model=this.model}} />
<div class="body-page-button-container">

View File

@ -1,5 +1,7 @@
<DSection @bodyClass="static-privacy" @class="container">
<div class="contents clearfix body-page">
<PluginOutlet @name="above-static" />
{{html-safe this.model.html}}
<PluginOutlet @name="below-static" />
</div>
</DSection>

View File

@ -1,5 +1,7 @@
<DSection @bodyClass="static-tos" @class="container">
<div class="contents clearfix body-page">
<PluginOutlet @name="above-static" />
{{html-safe this.model.html}}
<PluginOutlet @name="below-static" />
</div>
</DSection>