Browse Source

Feature/add icon to external links in footer (#2083)

* Add icon for external links

* Update changelog
pull/2075/head^2
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
f47883fb0b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 28
      apps/client/src/app/app.component.html

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Added
- Added an icon to the external links in the footer navigation
### Changed ### Changed
- Improved the language localization for German (`de`) - Improved the language localization for German (`de`)

28
apps/client/src/app/app.component.html

@ -101,9 +101,13 @@
> >
</li> </li>
<li *ngIf="hasPermissionForSubscription"> <li *ngIf="hasPermissionForSubscription">
<a href="https://status.ghostfol.io" title="Ghostfolio Status" <a
>Status</a class="align-items-baseline d-flex"
> href="https://status.ghostfol.io"
target="_blank"
title="Ghostfolio Status"
>Status<ion-icon class="ml-1" name="open-outline"></ion-icon
></a>
</li> </li>
</ul> </ul>
</div> </div>
@ -112,24 +116,30 @@
<ul class="list-unstyled"> <ul class="list-unstyled">
<li> <li>
<a <a
class="align-items-baseline d-flex"
href="https://github.com/ghostfolio/ghostfolio" href="https://github.com/ghostfolio/ghostfolio"
target="_blank"
title="Find Ghostfolio on GitHub" title="Find Ghostfolio on GitHub"
>GitHub</a >GitHub<ion-icon class="ml-1" name="open-outline"></ion-icon
> ></a>
</li> </li>
<li> <li>
<a <a
class="align-items-baseline d-flex"
href="https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg" href="https://join.slack.com/t/ghostfolio/shared_invite/zt-vsaan64h-F_I0fEo5M0P88lP9ibCxFg"
target="_blank"
title="Join the Ghostfolio Slack community" title="Join the Ghostfolio Slack community"
>Slack</a >Slack<ion-icon class="ml-1" name="open-outline"></ion-icon
> ></a>
</li> </li>
<li> <li>
<a <a
class="align-items-baseline d-flex"
href="https://twitter.com/ghostfolio_" href="https://twitter.com/ghostfolio_"
target="_blank"
title="Follow Ghostfolio on Twitter" title="Follow Ghostfolio on Twitter"
>Twitter</a >Twitter<ion-icon class="ml-1" name="open-outline"></ion-icon
> ></a>
</li> </li>
<li>&nbsp;</li> <li>&nbsp;</li>
<li> <li>

Loading…
Cancel
Save