src/app/app.component.ts
Root app component
selector | app-root |
styleUrls | app.component.css |
templateUrl | ./app.component.html |
Properties |
|
Public title |
title:
|
Type : String
|
Default value : 'La guilde [OdS]'
|
Defined in src/app/app.component.ts:15
|
Title of the page |
import { Component } from '@angular/core';
/**
* Root app component
*/
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
/**
* Title of the page
*/
public title: String = 'La guilde [OdS]';
}
<h1 class="uk-text-center uk-text-middle uk-text-bold">
{{title}}
</h1>
<app-navigation-bar></app-navigation-bar>
<body class="uk-flex uk-flex-center">
<div class="my-main">
<router-outlet></router-outlet>
</div>
</body>
<div class="uk-flex uk-flex-center">
<div class="licensing uk-text-bold uk-text-small uk-text-center uk-text-middle">This unofficial site includes art and other assets that are © 2015 ArenaNet, Inc. All rights reserved. All other trademarks
are the property of their respective owners.</div>
</div>