mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
45 changed files with 189 additions and 598 deletions
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { HalloGhostfolioPageComponent } from './hallo-ghostfolio-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: HalloGhostfolioPageComponent, |
|
||||
path: '', |
|
||||
title: 'Hallo Ghostfolio' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class HalloGhostfolioPageRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-hallo-ghostfolio-page', |
selector: 'gf-hallo-ghostfolio-page', |
||||
|
standalone: true, |
||||
templateUrl: './hallo-ghostfolio-page.html' |
templateUrl: './hallo-ghostfolio-page.html' |
||||
}) |
}) |
||||
export class HalloGhostfolioPageComponent {} |
export class HalloGhostfolioPageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { HalloGhostfolioPageRoutingModule } from './hallo-ghostfolio-page-routing.module'; |
|
||||
import { HalloGhostfolioPageComponent } from './hallo-ghostfolio-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [HalloGhostfolioPageComponent], |
|
||||
imports: [CommonModule, HalloGhostfolioPageRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class HalloGhostfolioPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { HelloGhostfolioPageComponent } from './hello-ghostfolio-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: HelloGhostfolioPageComponent, |
|
||||
path: '', |
|
||||
title: 'Hello Ghostfolio' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class HelloGhostfolioPageRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-hello-ghostfolio-page', |
selector: 'gf-hello-ghostfolio-page', |
||||
|
standalone: true, |
||||
templateUrl: './hello-ghostfolio-page.html' |
templateUrl: './hello-ghostfolio-page.html' |
||||
}) |
}) |
||||
export class HelloGhostfolioPageComponent {} |
export class HelloGhostfolioPageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { HelloGhostfolioPageRoutingModule } from './hello-ghostfolio-page-routing.module'; |
|
||||
import { HelloGhostfolioPageComponent } from './hello-ghostfolio-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [HelloGhostfolioPageComponent], |
|
||||
imports: [CommonModule, HelloGhostfolioPageRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class HelloGhostfolioPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { FirstMonthsInOpenSourcePageComponent } from './first-months-in-open-source-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: FirstMonthsInOpenSourcePageComponent, |
|
||||
path: '', |
|
||||
title: 'First months in Open Source' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class FirstMonthsInOpenSourceRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-first-months-in-open-source-page', |
selector: 'gf-first-months-in-open-source-page', |
||||
|
standalone: true, |
||||
templateUrl: './first-months-in-open-source-page.html' |
templateUrl: './first-months-in-open-source-page.html' |
||||
}) |
}) |
||||
export class FirstMonthsInOpenSourcePageComponent {} |
export class FirstMonthsInOpenSourcePageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { FirstMonthsInOpenSourceRoutingModule } from './first-months-in-open-source-page-routing.module'; |
|
||||
import { FirstMonthsInOpenSourcePageComponent } from './first-months-in-open-source-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [FirstMonthsInOpenSourcePageComponent], |
|
||||
imports: [CommonModule, FirstMonthsInOpenSourceRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class FirstMonthsInOpenSourcePageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { GhostfolioMeetsInternetIdentityPageComponent } from './ghostfolio-meets-internet-identity-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: GhostfolioMeetsInternetIdentityPageComponent, |
|
||||
path: '', |
|
||||
title: 'Ghostfolio meets Internet Identity' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class GhostfolioMeetsInternetIdentityRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-ghostfolio-meets-internet-identity-page', |
selector: 'gf-ghostfolio-meets-internet-identity-page', |
||||
|
standalone: true, |
||||
templateUrl: './ghostfolio-meets-internet-identity-page.html' |
templateUrl: './ghostfolio-meets-internet-identity-page.html' |
||||
}) |
}) |
||||
export class GhostfolioMeetsInternetIdentityPageComponent {} |
export class GhostfolioMeetsInternetIdentityPageComponent {} |
||||
|
@ -1,17 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { GhostfolioMeetsInternetIdentityRoutingModule } from './ghostfolio-meets-internet-identity-page-routing.module'; |
|
||||
import { GhostfolioMeetsInternetIdentityPageComponent } from './ghostfolio-meets-internet-identity-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [GhostfolioMeetsInternetIdentityPageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GhostfolioMeetsInternetIdentityRoutingModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GhostfolioMeetsInternetIdentityPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { HowDoIGetMyFinancesInOrderPageComponent } from './how-do-i-get-my-finances-in-order-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: HowDoIGetMyFinancesInOrderPageComponent, |
|
||||
path: '', |
|
||||
title: 'How do I get my finances in order?' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class HowDoIGetMyFinancesInOrderRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-how-do-i-get-my-finances-in-order-page', |
selector: 'gf-how-do-i-get-my-finances-in-order-page', |
||||
|
standalone: true, |
||||
templateUrl: './how-do-i-get-my-finances-in-order-page.html' |
templateUrl: './how-do-i-get-my-finances-in-order-page.html' |
||||
}) |
}) |
||||
export class HowDoIGetMyFinancesInOrderPageComponent {} |
export class HowDoIGetMyFinancesInOrderPageComponent {} |
||||
|
@ -1,17 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { HowDoIGetMyFinancesInOrderRoutingModule } from './how-do-i-get-my-finances-in-order-page-routing.module'; |
|
||||
import { HowDoIGetMyFinancesInOrderPageComponent } from './how-do-i-get-my-finances-in-order-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [HowDoIGetMyFinancesInOrderPageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
HowDoIGetMyFinancesInOrderRoutingModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class HowDoIGetMyFinancesInOrderPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { FiveHundredStarsOnGitHubPageComponent } from './500-stars-on-github-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: FiveHundredStarsOnGitHubPageComponent, |
|
||||
path: '', |
|
||||
title: '500 Stars on GitHub' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class FiveHundredStarsOnGitHubRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-500-stars-on-github-page', |
selector: 'gf-500-stars-on-github-page', |
||||
|
standalone: true, |
||||
templateUrl: './500-stars-on-github-page.html' |
templateUrl: './500-stars-on-github-page.html' |
||||
}) |
}) |
||||
export class FiveHundredStarsOnGitHubPageComponent {} |
export class FiveHundredStarsOnGitHubPageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { FiveHundredStarsOnGitHubRoutingModule } from './500-stars-on-github-page-routing.module'; |
|
||||
import { FiveHundredStarsOnGitHubPageComponent } from './500-stars-on-github-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [FiveHundredStarsOnGitHubPageComponent], |
|
||||
imports: [CommonModule, FiveHundredStarsOnGitHubRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class FiveHundredStarsOnGitHubPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { Hacktoberfest2022PageComponent } from './hacktoberfest-2022-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: Hacktoberfest2022PageComponent, |
|
||||
path: '', |
|
||||
title: 'Hacktoberfest 2022' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class Hacktoberfest2022RoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-hacktoberfest-2022-page', |
selector: 'gf-hacktoberfest-2022-page', |
||||
|
standalone: true, |
||||
templateUrl: './hacktoberfest-2022-page.html' |
templateUrl: './hacktoberfest-2022-page.html' |
||||
}) |
}) |
||||
export class Hacktoberfest2022PageComponent {} |
export class Hacktoberfest2022PageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { Hacktoberfest2022RoutingModule } from './hacktoberfest-2022-page-routing.module'; |
|
||||
import { Hacktoberfest2022PageComponent } from './hacktoberfest-2022-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [Hacktoberfest2022PageComponent], |
|
||||
imports: [CommonModule, Hacktoberfest2022RoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class Hacktoberfest2022PageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { BlackFriday2022PageComponent } from './black-friday-2022-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: BlackFriday2022PageComponent, |
|
||||
path: '', |
|
||||
title: 'Black Friday 2022' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class BlackFriday2022RoutingModule {} |
|
@ -1,21 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
import { GfPremiumIndicatorModule } from '@ghostfolio/ui/premium-indicator'; |
|
||||
|
|
||||
import { BlackFriday2022RoutingModule } from './black-friday-2022-page-routing.module'; |
|
||||
import { BlackFriday2022PageComponent } from './black-friday-2022-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [BlackFriday2022PageComponent], |
|
||||
imports: [ |
|
||||
BlackFriday2022RoutingModule, |
|
||||
CommonModule, |
|
||||
GfPremiumIndicatorModule, |
|
||||
MatButtonModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class BlackFriday2022PageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { TheImportanceOfTrackingYourPersonalFinancesPageComponent } from './the-importance-of-tracking-your-personal-finances-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: TheImportanceOfTrackingYourPersonalFinancesPageComponent, |
|
||||
path: '', |
|
||||
title: 'The importance of tracking your personal finances' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class TheImportanceOfTrackingYourPersonalFinancesRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-the-importance-of-tracking-your-personal-finances-page', |
selector: 'gf-the-importance-of-tracking-your-personal-finances-page', |
||||
|
standalone: true, |
||||
templateUrl: './the-importance-of-tracking-your-personal-finances-page.html' |
templateUrl: './the-importance-of-tracking-your-personal-finances-page.html' |
||||
}) |
}) |
||||
export class TheImportanceOfTrackingYourPersonalFinancesPageComponent {} |
export class TheImportanceOfTrackingYourPersonalFinancesPageComponent {} |
||||
|
@ -1,19 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { TheImportanceOfTrackingYourPersonalFinancesRoutingModule } from './the-importance-of-tracking-your-personal-finances-page-routing.module'; |
|
||||
import { TheImportanceOfTrackingYourPersonalFinancesPageComponent } from './the-importance-of-tracking-your-personal-finances-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [TheImportanceOfTrackingYourPersonalFinancesPageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
MatButtonModule, |
|
||||
RouterModule, |
|
||||
TheImportanceOfTrackingYourPersonalFinancesRoutingModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class TheImportanceOfTrackingYourPersonalFinancesPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { GhostfolioAufSackgeldVorgestelltPageComponent } from './ghostfolio-auf-sackgeld-vorgestellt-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: GhostfolioAufSackgeldVorgestelltPageComponent, |
|
||||
path: '', |
|
||||
title: 'Ghostfolio auf Sackgeld.com vorgestellt' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class GhostfolioAufSackgeldVorgestelltPageRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-ghostfolio-auf-sackgeld-vorgestellt-page', |
selector: 'gf-ghostfolio-auf-sackgeld-vorgestellt-page', |
||||
|
standalone: true, |
||||
templateUrl: './ghostfolio-auf-sackgeld-vorgestellt-page.html' |
templateUrl: './ghostfolio-auf-sackgeld-vorgestellt-page.html' |
||||
}) |
}) |
||||
export class GhostfolioAufSackgeldVorgestelltPageComponent {} |
export class GhostfolioAufSackgeldVorgestelltPageComponent {} |
||||
|
@ -1,17 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { GhostfolioAufSackgeldVorgestelltPageRoutingModule } from './ghostfolio-auf-sackgeld-vorgestellt-page-routing.module'; |
|
||||
import { GhostfolioAufSackgeldVorgestelltPageComponent } from './ghostfolio-auf-sackgeld-vorgestellt-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [GhostfolioAufSackgeldVorgestelltPageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GhostfolioAufSackgeldVorgestelltPageRoutingModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GhostfolioAufSackgeldVorgestelltPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { GhostfolioMeetsUmbrelPageComponent } from './ghostfolio-meets-umbrel-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: GhostfolioMeetsUmbrelPageComponent, |
|
||||
path: '', |
|
||||
title: 'Ghostfolio meets Umbrel' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class GhostfolioMeetsUmbrelPageRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-ghostfolio-meets-umbrel-page', |
selector: 'gf-ghostfolio-meets-umbrel-page', |
||||
|
standalone: true, |
||||
templateUrl: './ghostfolio-meets-umbrel-page.html' |
templateUrl: './ghostfolio-meets-umbrel-page.html' |
||||
}) |
}) |
||||
export class GhostfolioMeetsUmbrelPageComponent {} |
export class GhostfolioMeetsUmbrelPageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { GhostfolioMeetsUmbrelPageRoutingModule } from './ghostfolio-meets-umbrel-page-routing.module'; |
|
||||
import { GhostfolioMeetsUmbrelPageComponent } from './ghostfolio-meets-umbrel-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [GhostfolioMeetsUmbrelPageComponent], |
|
||||
imports: [CommonModule, GhostfolioMeetsUmbrelPageRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GhostfolioMeetsUmbrelPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { ThousandStarsOnGitHubPageComponent } from './1000-stars-on-github-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: ThousandStarsOnGitHubPageComponent, |
|
||||
path: '', |
|
||||
title: 'Ghostfolio reaches 1’000 Stars on GitHub' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class ThousandStarsOnGitHubRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-1000-stars-on-github-page', |
selector: 'gf-1000-stars-on-github-page', |
||||
|
standalone: true, |
||||
templateUrl: './1000-stars-on-github-page.html' |
templateUrl: './1000-stars-on-github-page.html' |
||||
}) |
}) |
||||
export class ThousandStarsOnGitHubPageComponent {} |
export class ThousandStarsOnGitHubPageComponent {} |
||||
|
@ -1,13 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { ThousandStarsOnGitHubRoutingModule } from './1000-stars-on-github-page-routing.module'; |
|
||||
import { ThousandStarsOnGitHubPageComponent } from './1000-stars-on-github-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ThousandStarsOnGitHubPageComponent], |
|
||||
imports: [CommonModule, ThousandStarsOnGitHubRoutingModule, RouterModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class ThousandStarsOnGitHubPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { UnlockYourFinancialPotentialWithGhostfolioPageComponent } from './unlock-your-financial-potential-with-ghostfolio-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: UnlockYourFinancialPotentialWithGhostfolioPageComponent, |
|
||||
path: '', |
|
||||
title: 'Unlock your Financial Potential with Ghostfolio' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class UnlockYourFinancialPotentialWithGhostfolioRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-unlock-your-financial-potential-with-ghostfolio-page', |
selector: 'gf-unlock-your-financial-potential-with-ghostfolio-page', |
||||
|
standalone: true, |
||||
templateUrl: './unlock-your-financial-potential-with-ghostfolio-page.html' |
templateUrl: './unlock-your-financial-potential-with-ghostfolio-page.html' |
||||
}) |
}) |
||||
export class UnlockYourFinancialPotentialWithGhostfolioPageComponent {} |
export class UnlockYourFinancialPotentialWithGhostfolioPageComponent {} |
||||
|
@ -1,19 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { UnlockYourFinancialPotentialWithGhostfolioRoutingModule } from './unlock-your-financial-potential-with-ghostfolio-page-routing.module'; |
|
||||
import { UnlockYourFinancialPotentialWithGhostfolioPageComponent } from './unlock-your-financial-potential-with-ghostfolio-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [UnlockYourFinancialPotentialWithGhostfolioPageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
MatButtonModule, |
|
||||
RouterModule, |
|
||||
UnlockYourFinancialPotentialWithGhostfolioRoutingModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class UnlockYourFinancialPotentialWithGhostfolioPageModule {} |
|
@ -1,20 +0,0 @@ |
|||||
import { NgModule } from '@angular/core'; |
|
||||
import { RouterModule, Routes } from '@angular/router'; |
|
||||
import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; |
|
||||
|
|
||||
import { ExploringThePathToFirePageComponent } from './exploring-the-path-to-fire-page.component'; |
|
||||
|
|
||||
const routes: Routes = [ |
|
||||
{ |
|
||||
canActivate: [AuthGuard], |
|
||||
component: ExploringThePathToFirePageComponent, |
|
||||
path: '', |
|
||||
title: 'Exploring the Path to FIRE' |
|
||||
} |
|
||||
]; |
|
||||
|
|
||||
@NgModule({ |
|
||||
imports: [RouterModule.forChild(routes)], |
|
||||
exports: [RouterModule] |
|
||||
}) |
|
||||
export class ExploringThePathToFireRoutingModule {} |
|
@ -1,8 +1,12 @@ |
|||||
import { Component } from '@angular/core'; |
import { Component } from '@angular/core'; |
||||
|
import { MatButtonModule } from '@angular/material/button'; |
||||
|
import { RouterModule } from '@angular/router'; |
||||
|
|
||||
@Component({ |
@Component({ |
||||
host: { class: 'page' }, |
host: { class: 'page' }, |
||||
|
imports: [MatButtonModule, RouterModule], |
||||
selector: 'gf-exploring-the-path-to-fire-page-page', |
selector: 'gf-exploring-the-path-to-fire-page-page', |
||||
|
standalone: true, |
||||
templateUrl: './exploring-the-path-to-fire-page.html' |
templateUrl: './exploring-the-path-to-fire-page.html' |
||||
}) |
}) |
||||
export class ExploringThePathToFirePageComponent {} |
export class ExploringThePathToFirePageComponent {} |
||||
|
@ -1,19 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { ExploringThePathToFireRoutingModule } from './exploring-the-path-to-fire-page-routing.module'; |
|
||||
import { ExploringThePathToFirePageComponent } from './exploring-the-path-to-fire-page.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ExploringThePathToFirePageComponent], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
ExploringThePathToFireRoutingModule, |
|
||||
MatButtonModule, |
|
||||
RouterModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class ExploringThePathToFirePageModule {} |
|
Loading…
Reference in new issue