4 |
{{ 'TITLE' | translate }}
5 |
6 |
7 | {{ 'CONTENT' | translate }}
8 |
9 |
10 |
11 | - {{ 'FEAT_JWT' | translate }}
12 | - {{ 'FEAT_ROLES' | translate }}
13 | - {{ 'FEAT_TRANSLATIONS' | translate }}
14 |
15 |
16 |
17 |
18 |
{{ 'USED_LIBRARIES' | translate }}
19 |
20 |
24 |
25 |
26 |
27 |
{{ 'EXTERNAL_LINKS' | translate }}
28 |
29 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/src/app/about/about.component.scss:
--------------------------------------------------------------------------------
1 | h2, h3 {
2 | margin-bottom: 0;
3 | }
4 |
5 | ul {
6 | margin: 0 0 1em 0;
7 | }
8 |
--------------------------------------------------------------------------------
/src/app/about/about.component.spec.ts:
--------------------------------------------------------------------------------
1 | import { TestBed, ComponentFixture, async } from '@angular/core/testing';
2 | import { TranslateModule } from '@ngx-translate/core';
3 |
4 | import { SharedModule } from '../shared/shared.module';
5 | import { AboutComponent, AboutListComponent } from './';
6 |
7 | describe('Component: /about/about.component.ts', () => {
8 | let component: AboutComponent;
9 | let fixture: ComponentFixture