Skip to content

ngTemplateOutlet

Khachnaoui-Tarek edited this page Jun 4, 2020 · 2 revisions

https://angular.io/api/common/NgTemplateOutlet

<ng-container *ngTemplateOutlet="footer"></ng-container>

<ng-template #footer>
    <footer *ngIf="!fuseConfig.layout.footer.hidden"
            [ngClass]="fuseConfig.layout.footer.customBackgroundColor === true ? fuseConfig.layout.footer.position + ' ' + fuseConfig.layout.footer.background : fuseConfig.layout.footer.position">
    </footer>
</ng-template>

Clone this wiki locally