Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions src/app/pages/static-pages/about/about.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,26 @@ <h3>Development team:</h3>
</p>
}
</div>
@if (team.formerTeamMembers?.length) {
<div class="list">
<h3>Former team members:</h3>
@for (person of team.formerTeamMembers; track person.name) {
<p>
{{ person.name }}
</p>
}
</div>
}
</div>
}

<div class="grid-row-title">
<h2>Get in touch</h2>
</div>

<div class="grid-row-content">
<div class="grid-row-content span-2">
<div class="contact">
<h3>Questions concerning research and teaching?</h3>
<h3>Questions concerning research, teaching or infrastructure?</h3>
<div class="contact-info">
<mat-icon>location_on</mat-icon>
<p>
Expand All @@ -88,15 +98,6 @@ <h3>Questions concerning research and teaching?</h3>
50931 Köln
</p>
</div>
<div class="contact-info">
<mat-icon>email</mat-icon>
<a>info&#64;kompakkt.de</a>
</div>
</div>
</div>
<div class="grid-row-content">
<div class="contact">
<h3>Questions concerning infrastructure services?</h3>
<div class="contact-info">
<mat-icon>location_on</mat-icon>
<p>
Expand All @@ -108,7 +109,7 @@ <h3>Questions concerning infrastructure services?</h3>
</div>
<div class="contact-info">
<mat-icon>email</mat-icon>
<a>semantic-kompakkt&#64;tib.eu</a>
<a>info&#64;kompakkt.de</a>
</div>
</div>
</div>
Expand Down
6 changes: 6 additions & 0 deletions src/app/pages/static-pages/about/about.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ export class AboutComponent implements OnInit {
url: 'https://github.com/vmalieske',
},
],
formerTeamMembers: [
{
name: 'Nadjim Noori',
url: 'https://github.com/NadNo12',
},
],
},
{
name: 'Technische Informationsbibliothek (TIB)',
Expand Down
Loading