Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 1.56 KB

File metadata and controls

71 lines (49 loc) · 1.56 KB

@acpaas-ui/ngx-layout

A simple footer with go-to-top functionality.

Usage

import { FooterModule } from '@acpaas-ui/ngx-layout';

Documentation

Visit our documentation site for full how-to docs and guidelines

API

Footer

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.

Subfooter

No API.

Copyright

Name Default value Description
@Input() domain: String; '' The copyright domain.

Available directives

  • auiFooterContent
  • auiFooterBottom

The main (or only) functionality of these directives is helping you laying out your footer.

Example

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>

Contributing

Visit our Contribution Guidelines for more information on how to contribute.