mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.9 KiB
53 lines
1.9 KiB
<div class="container">
|
|
<div class="mb-5 row">
|
|
<div class="col">
|
|
<h1 class="d-none d-sm-block h3 mb-4 text-center" i18n>
|
|
Discover Open Source Alternatives for Personal Finance Tools
|
|
</h1>
|
|
<div class="introduction mb-4">
|
|
<p i18n>
|
|
This overview page features a curated collection of personal finance
|
|
tools compared to the open source alternative
|
|
<a [routerLink]="routerLinkAbout">Ghostfolio</a>. If you value
|
|
transparency, data privacy, and community collaboration, Ghostfolio
|
|
provides an excellent opportunity to take control of your financial
|
|
management.
|
|
</p>
|
|
<p i18n>
|
|
Explore the links below to compare a variety of personal finance tools
|
|
with Ghostfolio.
|
|
</p>
|
|
</div>
|
|
<mat-card
|
|
*ngFor="let product of products"
|
|
appearance="outlined"
|
|
class="mb-3"
|
|
>
|
|
<mat-card-content>
|
|
<div class="container p-0">
|
|
<div class="flex-nowrap no-gutters row">
|
|
<a
|
|
class="d-flex overflow-hidden w-100"
|
|
title="Compare Ghostfolio to {{ product.name }}"
|
|
[routerLink]="[pathResources, 'personal-finance-tools', 'open-source-alternative-to-' + product.key]"
|
|
>
|
|
<div class="flex-grow-1 overflow-hidden">
|
|
<div class="h6 m-0 text-truncate" i18n>
|
|
Open Source Alternative to {{ product.name }}
|
|
</div>
|
|
</div>
|
|
<div class="align-items-center d-flex">
|
|
<ion-icon
|
|
class="chevron text-muted"
|
|
name="chevron-forward-outline"
|
|
size="small"
|
|
></ion-icon>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|