A simple footer with go-to-top functionality.
import { FooterModule } from '@acpaas-ui/ngx-layout';
Visit our documentation site for full how-to docs and guidelines
Name | Default value | Description |
---|---|---|
@Input() isExtended: Boolean; |
false |
Whether there is more than only a subfooter module or not. This variable is used to activate change detection. |
No API.
Name | Default value | Description |
---|---|---|
@Input() domain: String; |
'' |
The copyright domain. |
- auiFooterContent
- auiFooterBottom
The main (or only) functionality of these directives is helping you laying out your footer.
import { FooterModule } from '@acpaas-ui/ngx-layout';
@NgModule({
imports: [
FooterModule
]
});
export class AppModule {};
<aui-footer isExtended="false">
<div class="u-margin-bottom u-margin-top">
<div auiFooterContent>
Footer content goes here
</div>
<div auiFooterBottom>
<aui-subfooter>
<aui-copyright domain="Digipolis"></aui-copyright>
</aui-subfooter>
</div>
</div>
</aui-footer>
Visit our Contribution Guidelines for more information on how to contribute.