-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Use lemmyverse.link for linking outside (#166)
- Loading branch information
1 parent
b2572f6
commit 93a0d26
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -300,10 +300,16 @@ <h1>{{title}}</h1> | |
</div> | ||
<strong> | ||
<ng-container *ngIf="maintainer === '@[email protected]' else splitMaintainerAuthor"> | ||
<transloco [key]="'app.footer.created_and_maintained_by'" [params]="{authorUrl: 'https://lemmings.world/u/rikudou', author: '@[email protected]'}" /> | ||
<transloco [key]="'app.footer.created_and_maintained_by'" [params]="{ | ||
authorUrl: 'https://lemmyverse.link/u/[email protected]', | ||
author: '@[email protected]' | ||
}" /> | ||
</ng-container> | ||
<ng-template #splitMaintainerAuthor> | ||
<transloco [key]="'app.footer.created_by'" [params]="{authorUrl: 'https://lemmings.world/u/rikudou', author: '@[email protected]'}" /> | ||
<transloco [key]="'app.footer.created_by'" [params]="{ | ||
authorUrl: 'https://lemmyverse.link/u/[email protected]', | ||
author: '@[email protected]' | ||
}" /> | ||
<transloco [key]="'app.footer.maintained_by'" [params]="{maintainerLink: maintainerLink, maintainer: maintainer}" /> | ||
</ng-template> | ||
<transloco [key]="'app.footer.source_link'" [params]="{sourceCodeLink: sourceCodeLink}" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
(<a target="_blank" href="https://{{instance}}/@[email protected]">@[email protected]</a>) | ||
</ng-container> | ||
<ng-container *ngIf="software !== 'mastodon' && software !== 'lemmy'"> | ||
(<a target="_blank" href="https://lemmy.dbzer0.com/u/db0">@[email protected]</a>) | ||
(<a target="_blank" href="https://lemmyverse.link/u/db0@lemmy.dbzer0.com">@[email protected]</a>) | ||
</ng-container> | ||
to reset it for you. | ||
</p> | ||
|