Skip to content
Draft
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
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ collections:
permalink: /:url
projects:
ouput: true
staff:
ouput: true

# Plugins
plugins:
Expand Down
1 change: 1 addition & 0 deletions _data/nav_order.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
- Mission
- Open Source AI
- Team
- Join
- Mentoring
- Consulting
7 changes: 7 additions & 0 deletions _staff/kiraly_franz.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Franz Kiraly
image: assets/images/feature-engine-logo-square.png
github_link: https://github.com/fkiraly
linkedin_link: https://www.linkedin.com/in/franz-kir%C3%A1ly-10a1391ba/
---
Franz Kiraly
33 changes: 33 additions & 0 deletions team.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: default
nav_title: Team
title: GC.OS Team
show_title: true
---

<br>

### Meet the GC.OS Team

<div class="container mx-auto px-4 py-12">
<div class="flex flex-wrap -mx-4">
{% for person in site.staff %}
{% capture person_content %}
<div class="text-center">
<div class="flex justify-center space-x-4 mb-4">
<img src="{{ person.image }}" alt="{{ person.title }}" class="h-24 w-24 object-cover" />
</div>
<p class="text-lg">{{ person.content }}</p>
<div class="flex justify-center space-x-4 mt-4">
{% include github-icon.html link=person.github_link %}
{% include linkedin-icon.html link=person.linkedin_link %}
</div>
</div>
{% endcapture %}
{% include card.html
content=person_content
show_hover=false
%}
{% endfor %}
</div>
</div>