Last active
February 11, 2018 08:14
-
-
Save glutengo/5734e5b4eeb7dbd3cb1e2cadf2b051d8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <h1>Working experience</h1> | |
| <mgl-timeline> | |
| <mgl-timeline-entry *ngFor="let job of data.jobs"> | |
| <mgl-timeline-entry-header> | |
| <div class="title">{{job.title}}</div> | |
| <div class="subtitle">{{job.company}}</div> | |
| </mgl-timeline-entry-header> | |
| <mgl-timeline-entry-content> | |
| <ul> | |
| <li *ngFor="let task of job.tasks">{{task}}</li> | |
| </ul> | |
| </mgl-timeline-entry-content> | |
| </mgl-timeline-entry> | |
| </mgl-timeline> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment