-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f060e84
commit de4f6ee
Showing
4 changed files
with
87 additions
and
50 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
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
17 changes: 14 additions & 3 deletions
17
libs/exercises/src/lib/assess-life/components/intro/intro.component.html
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
<p>Prepare the space around you. Close your eyes and take a few deep breaths.</p> | ||
<p>Let go of your expectations.</p> | ||
<p>Start when you feel ready.</p> | ||
<ng-container *ngIf="interval"> | ||
<ng-container *ngIf="interval === 'weekly'"> | ||
<p>Bye week {{ week -1 }}, Hello week {{ week }}.</p> | ||
</ng-container> | ||
<ng-container *ngIf="interval === 'monthly'"> | ||
<p>Bye {{ month - 1 | getMonthName }}, Hello {{ month | getMonthName }}</p> | ||
</ng-container> | ||
<ng-container *ngIf="interval === 'quarterly'"> | ||
<p>Bye quarter {{ quarter - 1 }}, Hello quarter {{ quarter }}</p> | ||
</ng-container> | ||
<ng-container *ngIf="interval === 'yearly'"> | ||
<p>Bye {{ year - 1}}, Hello {{ year }}</p> | ||
</ng-container> | ||
</ng-container> |
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