Skip to content

Commit

Permalink
conf
Browse files Browse the repository at this point in the history
  • Loading branch information
jcupac committed Jun 12, 2024
1 parent 1a2fb98 commit d4b2d7d
Show file tree
Hide file tree
Showing 31 changed files with 995 additions and 204 deletions.
55 changes: 33 additions & 22 deletions _data/conference-speakers.yml
Original file line number Diff line number Diff line change
@@ -1,56 +1,67 @@
list:

- i: kent_beck
date: 12-1pm EST (USA)
title:
date: 12-1pm EST
zone: USA
title: "TDD: Theme & Variations"
link:

- i: dave_farley
date: 10-11am CET (Europe)
title:
date: 10-11am CET
zone: Europe
title: "Modern Software Engineering: Building Better Software Faster"
link:

- i: alistair_cockburn
date: 1-2pm EST (USA)
title:
date: 1-2pm EST
zone: USA
title: Hexagonal Architecture
link:

- i: vlad_khononov
date: 11-12pm CET (Europe)
title:
date: 11-12pm CET
zone: Europe
title: "Complexity and Modularity: Two Sides of the Same Coin"
link:

- i: susanne_kaiser
date: 12-1pm CET (Europe)
title:
date: 12-1pm CET
zone: Europe
title: "Optimizing for a fast flow of value with Architecture for Flow"
link:

- i: jimmy_bogard
date: 2-3pm EST (USA)
title:
date: 2-3pm EST
zone: USA
title: "Domain-Driven Refactoring"
link:

- i: sonya_natanzon
date: 3-4pm EST (USA)
title:
date: 3-4pm EST
zone: USA
title: "So you think you might be an architect"
link:

- i: marco_consolaro
date: 1-2pm CET (Europe)
title:
date: 1-2pm CET
zone: Europe
title: "Test Doubles without Tears"
link:

- i: alessandro_di_gioia
date: 1-2pm CET (Europe)
title:
date: 1-2pm CET
zone: Europe
title: "Test Doubles without Tears"
link:

- i: nick_tune
date: 2-3pm CET (Europe)
title:
date: 2-3pm CET
zone: Europe
title: "Architecture Modernization: Aligning Software, Strategy, and Structure"
link:

- i: laila_bougria
date: 3-4pm CET (Europe)
title:
date: 3-4pm CET
zone: Europe
title: "Orchestration vs. Choreography: The good, the bad, and the trade-offs"
link:
5 changes: 2 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="footer border-top border-gray-light mt-5 pt-3 text-right text-gray">
This site is open source.
<a href="https://github.com/techexcellenceio/community/edit/main/README.md">Improve this page</a>.
<div class="footer">
© Tech Excellence 2024. All rights reserved
</div>

195 changes: 195 additions & 0 deletions _includes/incl-conf-subdomain.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
<div id="conf-main" class="">
<div class="masthead">
<div class="conference-promo">
<!-- TE Conference 2024 -->
<p>Tech <br class="br-2"/>
Excellence<br class="br-1"/>
Conference
</p>
</div>

<div class="dates">
<p>Fri 22 Nov 2024</p>
<!-- <p>—</p> -->
<p>|</p>
<!-- <p>&middot;</p> -->
<p>Live Online</p>
</div>

<button href="https://www.meetup.com/techexcellence/events/301221542/" target="_blank" rel="noopener" class="c-btn">Register</button>

<button href="{{ site.url }}/conf/#sessions" rel="noopener" class="c-btn c-btn-secondary">Sessions</button>
</div>


{% assign conferenceSpeakers = site.data.conference-speakers.list %}

<div class="container-xl c-container d-none">
<div class="row">

{% for conferenceSpeaker in conferenceSpeakers %}
{% for member in site.members %}
{% if member.i == conferenceSpeaker.i %}

<div class="col">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
<img src="{{ site.url }}/assets/img/{{ member.i }}.png?v=2" alt="{{ member.name }}" width="120" height="120" />
</a>
<div class="text-container">
<p class="p-name">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
{{ member.name }}
</a>
</p>
<p class="p-title">
{{ member.title }}
</p>
<!-- <p class="p-talk">
{{ conferenceSpeaker.title }}
</p> -->
<p class="p-date">
<span class="material-symbols-outlined">
calendar_today
</span>

{{ conferenceSpeaker.date }}
</p>
</div>
</div>

{% endif %}
{% endfor %}
{% endfor %}

</div>
</div>



<article id="sessions" class="container-lg lineup">

<h1>Sessions</h1>


<!-- Europe -->

<h2 class="">Europe - Sessions (Online)</h2>


{% assign conferenceSpeakers = site.data.conference-speakers.list %}

{% for conferenceSpeaker in conferenceSpeakers %}
{% for member in site.members %}
{% if member.i == conferenceSpeaker.i %}
{% if conferenceSpeaker.zone == "Europe" %}
<div class="s-container">
<div class="row img-c">



<div class="col profile-img">

<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
<img src="{{ site.url }}/assets/img/{{ member.i }}.png?v=2" alt="{{ member.name }}" width="90" height="90" />
</a>

</div>

</div>


<div class="col text-container">
<!-- <p class="p-title">
{{ member.title }}
</p> -->
<p class="p-date">
<span class="material-symbols-outlined">
calendar_today
</span>
{{ conferenceSpeaker.date }}
</p>

<p class="p-talk">
{{ conferenceSpeaker.title }}
</p>
<p class="p-name">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
{{ member.name }}
</a>
</p>
<p class="p-title">
{{ member.title }}
</p>
</div>

</div>

{% endif %}
{% endif %}
{% endfor %}
{% endfor %}





<!-- USA -->

<h2 style="margin-top: 4rem">USA - Sessions (Online)</h2>

{% for conferenceSpeaker in conferenceSpeakers %}
{% for member in site.members %}
{% if member.i == conferenceSpeaker.i %}
{% if conferenceSpeaker.zone == "USA" %}
<div class="s-container">
<div class="row img-c">



<div class="col profile-img">

<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
<img src="{{ site.url }}/assets/img/{{ member.i }}.png?v=2" alt="{{ member.name }}" width="90" height="90" />
</a>

</div>

</div>


<div class="col text-container">
<!-- <p class="p-title">
{{ member.title }}
</p> -->
<p class="p-date">
<span class="material-symbols-outlined">
calendar_today
</span>
{{ conferenceSpeaker.date }}
</p>

<p class="p-talk">
{{ conferenceSpeaker.title }}
</p>
<p class="p-name">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
{{ member.name }}
</a>
</p>
<p class="p-title">
{{ member.title }}
</p>
</div>

</div>

{% endif %}
{% endif %}
{% endfor %}
{% endfor %}


</article>

</div>

39 changes: 20 additions & 19 deletions _includes/incl-conference.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<!-- TODO: JC Add description for the conference, -->

<div id="conference" class="g-container">
<div class="conference-promo">
<!-- TE Conference 2024 - Coming soon... -->
Expand All @@ -12,9 +10,17 @@

<div class="dates">
<p>Fri 22 Nov 2024</p>
<!-- <p> | </p> -->
<p>&bull;</p>
<p>Live Online</p>
</div>

<div class="">
<button href="https://www.meetup.com/techexcellence/events/301221542/" target="_blank" rel="noopener" class="c-btn">Register</button>

<button href="{{ site.url }}/conf/#sessions" rel="noopener" class="c-btn">Sessions</button>
</div>


{% assign conferenceSpeakers = site.data.conference-speakers.list %}

Expand All @@ -27,31 +33,26 @@

<div class="col">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
<img src="{{ site.url }}/assets/img/{{ member.i }}.png?v=2" alt="{{ member.name }}" width="120" height="120" />
</a>
<div class="text-container">
<div class="img-container">
<img src="{{ site.url }}/assets/img/{{ member.i }}.png?v=2" alt="{{ member.name }}" width="128" height="128" />
</div>
<p class="p-name">
<a href="{{ member.linkedin }}" target="_blank" rel="noopener">
{{ member.name }}
</a>
{{ member.name }}
</p>
<p class="p-title">
<!-- <p class="p-title">
{{ member.title }}
</p>
<!-- <p>{{ conferenceSpeaker.title }} </p> -->
</p> -->
<!-- <p class="p-talk">
Microservices & Clean Architecture
{{ conferenceSpeaker.title }}
</p> -->
<p class="p-date">
<!-- <i class="fa-regular fa-calendar"></i> -->

<!-- <i class="fa-regular fa-calendar"></i> -->
<!-- <p class="p-date">
<span class="material-symbols-outlined">
calendar_today
</span>

{{ conferenceSpeaker.date }}
</p>
</div>
{{ conferenceSpeaker.date }} ({{ conferenceSpeaker.zone }})
</p> -->
</a>
</div>

{% endif %}
Expand Down
File renamed without changes.
Loading

0 comments on commit d4b2d7d

Please sign in to comment.