Skip to content

Commit

Permalink
Merge pull request #383 from BellumGens/talent
Browse files Browse the repository at this point in the history
Talent
  • Loading branch information
kdinev authored Aug 19, 2024
2 parents 38ed389 + ff19bec commit 240b1c2
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 36 deletions.
20 changes: 20 additions & 0 deletions projects/bellumgens/src/app/events/events.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,26 @@ <h4 igxCardHeaderSubtitle>{{player.team}}</h4>
</div>
</div>

<div id="qualifiers" class="content-container-row">
<h2 i18n>Talent</h2>
<div class="card-wrapper">
<igx-card *ngFor="let caster of talent">
<igx-card-media>
<img [src]="caster.image" alt="Player Avatar" />
</igx-card-media>
<igx-card-header>
<div igxCardHeaderTitle>
<span>{{caster.name}}</span>
<igx-avatar [src]="caster.country | countrySVG" *ngIf="caster.country !== 'TBA'" shape="circle" [title]="caster.country" class="country-badge-small"></igx-avatar>
<!-- <igx-avatar [src]="player.race | sc2RaceThumb" shape="circle" [title]="player.race" class="country-badge-small"></igx-avatar>
<igx-avatar [src]="player.country | countrySVG" shape="circle" size="small" [title]="player.country" class="country-badge-small"></igx-avatar> -->
</div>
<h4 igxCardHeaderSubtitle>{{caster.role}}</h4>
</igx-card-header>
</igx-card>
</div>
</div>

<div id="qualifiers" class="content-container-row">
<h2 i18n>Qualifiers</h2>
</div>
Expand Down
7 changes: 7 additions & 0 deletions projects/bellumgens/src/app/events/events.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ export class EventsComponent extends BaseDirective {
{name: 'Mihail "msrm" Mihaylov', country: 'Bulgaria', race: 'Zerg', team: 'BSL', source: 'Bulgarian Open Qualifier', image: '/assets/bge/players/16-msrm.png'}
];

public talent = [
{name: 'Kevin "RotterdaM" van der Kooi', country: 'Netherlands', role: 'Commentator', image: '/assets/bge/silhouette.webp'},
{name: 'Philip "BeoMulf" Mulford', country: 'United-States-of-America', role: 'Commentator', image: '/assets/bge/silhouette.webp'},
{name: 'Konstantin "NoThx" Kunev', country: 'Bulgaria', role: 'Commentator', image: '/assets/bge/silhouette.webp'},
{name: 'Lachezar "Exalted" Kamenov', country: 'Bulgaria', role: 'Commentator', image: '/assets/bge/silhouette.webp'}
]

public ticketsUrl = 'https://www.eventim.bg/en/tickets/bellum-gens-elite-stara-zagora-stara-zagora-leten-teatr-642927/event.html';

constructor(
Expand Down
8 changes: 8 additions & 0 deletions projects/bellumgens/src/locale/messages.bg.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,14 @@
<context context-type="linenumber">58,60</context>
</context-group>
</trans-unit>
<trans-unit id="7492310905765634524" datatype="html">
<source>Talent</source>
<target>Таланти</target>
<context-group purpose="location">
<context context-type="sourcefile">projects/bellumgens/src/app/events/events.component.html</context>
<context context-type="linenumber">80,82</context>
</context-group>
</trans-unit>
<trans-unit id="3935916693907446618" datatype="html">
<source>Qualifiers</source>
<target>Квалификации</target>
Expand Down
Loading

0 comments on commit 240b1c2

Please sign in to comment.