Skip to content

Commit

Permalink
remove dependence on yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
ncrescenzio committed Oct 9, 2024
1 parent a1c77ab commit a4dc52a
Show file tree
Hide file tree
Showing 4 changed files with 118 additions and 45 deletions.
16 changes: 16 additions & 0 deletions docs/pages/Kratos/Workshops/2024_UNIPD/Event/card_organizer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<div class="col s12 m6 l4">
<div class="card hoverable">
<div class="card-image">
<img class="activator portrait-img" src="{{include.image}}" style="aspect-ratio: 1 / 1;">
</div>
<div class="card-content" id="secondary-title">
<div style="width: 100%; float: left;">
<span class="card-title activator" id="main-title-text">
{{include.name}}</span>
<span class="card-title activator" id="secondary-title-text">
{{include.affiliation}}</span>
</div>
</div>
</div>
</div>

39 changes: 21 additions & 18 deletions docs/pages/Kratos/Workshops/2024_UNIPD/Event/organizers.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,27 @@ <h4 class="center-align section-gray-header">Workshop Organizers</h4>
</div>

<div class="row center-align">
{% for organizers in site.data.workshop2024.organizers %}
<div class="col s12 m6 l4">
<div class="card hoverable">
<div class="card-image">
<img class="activator portrait-img" src="{{organizers.image}}"
style="aspect-ratio: 1 / 1;">
</div>
<div class="card-content" id="secondary-title">
<div style="width: 100%; float: left;">
<span class="card-title activator" id="main-title-text">
{{organizers.name}}</span>
<span class="card-title activator" id="secondary-title-text">
{{organizers.affiliation}}</span>
</div>
</div>
</div>
</div>
{% endfor %}

{% include_relative card_organizer.html
image="https://antonialarese.github.io/images//DSC_0581-EDIT.jpg"
name="Antonia Larese" affiliation="UNIPD (Italy)" %}

{% include_relative card_organizer.html
image="https://avatars.githubusercontent.com/u/19992225?v=4"
name="Rubén Zorrilla Martínez" affiliation="UPC/CIMNE (Spain)" %}

{% include_relative card_organizer.html
image="https://avatars.githubusercontent.com/u/1935791?v=4"
name="Carlos Roig" affiliation="CIMNE (Spain)" %}

{% include_relative card_organizer.html
image="https://avatars.githubusercontent.com/u/7856520?v=4"
name="Suneth Warnakulasuriya" affiliation="TUB (Germany)" %}

{% include_relative card_organizer.html
image="https://media.licdn.com/dms/image/v2/C4D03AQGEnUuZtnfz2g/profile-displayphoto-shrink_200_200/profile-displayphoto-shrink_200_200/0/1538317271404?e=2147483647&v=beta&t=iWexdSR4x-J678DnnI9hExLKXkUJRt0GSdszzN7d_7g"
name="Nicolò Crescenzio" affiliation="UNIPD (Italy)" %}

</div>

</div>
Expand Down
85 changes: 63 additions & 22 deletions docs/pages/Kratos/Workshops/2024_UNIPD/Event/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<h4 class="center-align section-gray-header">Schedule</h4>

<div class="row">

<div class="col s12 m10 offset-m1 l10 offset-l1 section-gray-body">
<ul class="tabs">
<li class="tab col s4"><a class="active" href="#day1"><span style="font-weight: bold; font-size: 20px;">Day 1</span></a></li>
Expand All @@ -13,38 +14,78 @@ <h4 class="center-align section-gray-header">Schedule</h4>
</div>

<!--- First Day -->
{% for day in site.data.workshop2024.schedule.days %}
<div id="{{day.name}}" class="col s12 m10 offset-m1 l10 offset-l1 section-gray-body">
{% for session in day.sessions %}
<div id="day1" class="col s12 m10 offset-m1 l10 offset-l1 section-gray-body">
<table class="schedule">
<tbody>
{% if session.talks %}
<tr>
<th>{{session.start_time}}-{{session.end_time}}</th>
<td><h5>{{session.title}}</h5></td>
<th>14:00-14:30</th>
<td><h5>Welcome</h5></td>
</tr>
<tr>
<th>14:30-16:00</th>
<td><h5>Introduction to Kratos</h5></td>
</tr>
<tr>
<th>16:00-16:30</th>
<td><h5>Coffee Break</h5></td>
</tr>
<!-- {% for talk in session.talks %} -->
<!-- <tr> -->
<!-- <th>{{talk.start_time}}-{{talk.end_time}}</th> -->
<!-- {% assign talksp = site.data.workshop2024.talks[talk.label] %} -->
<!-- {% assign speaker = site.data.workshop2024.speakers[talksp.speaker] %} -->
<!-- <td><b>{{speaker.name}}:</b> <i>{{talksp.title}}</i></td> -->
<!-- </tr> -->
<!-- {% endfor %} -->
{% else %}
<tr>
<th>{{session.start_time}}-{{session.end_time}}</th>
<td><h5>{{session.title}}</h5></td>
<th>16:30-18:30</th>
<td><h5>Kratos 4 Industry</h5></td>
</tr>
</tbody>
</table>
</div>

<!--- Second Day -->
<div id="day2" class="col s12 m10 offset-m1 l10 offset-l1 section-gray-body">
<table class="schedule">
<tbody>
<tr>
<th>09:00-10:30</th>
<td><h5>What's new in Kratos? Application Session (1)</h5></td>
</tr>
<tr>
<th>10:30-11:00</th>
<td><h5>Coffee Break</h5></td>
</tr>
<tr>
<th>11:00-12:30</th>
<td><h5>What's new in Kratos? Application Session (2)</h5></td>
</tr>
<tr>
<th>12:30-14:00</th>
<td><h5>Lunch Break</h5></td>
</tr>
<tr>
<th>14:00-15:00</th>
<td><h5>What's new in Kratos? Application Session (3)</h5></td>
</tr>
<tr>
<th>15:00-16:00</th>
<td><h5>What's new in Kratos? Core Session</h5></td>
</tr>
<tr>
<th>16:00-18:00</th>
<td><h5>Round Table & Coffee</h5></td>
</tr>
</tbody>
</table>
</div>

<!--- Third Day -->
<div id="day3" class="col s12 m10 offset-m1 l10 offset-l1 section-gray-body">
<table class="schedule">
<tbody>
<tr>
<th>09:00-TBD</th>
<td><h5>Kratos Course</h5></td>
</tr>
{% endif %}
</tbody>
</table>
{% endfor %}
</div>
{% endfor %}
</div>

<div class="row">
</div>

</div>
</div>
23 changes: 18 additions & 5 deletions docs/pages/Kratos/Workshops/2024_UNIPD/Event/speakers.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,26 @@ <h4 class="center-align section-white-header">Speakers</h4>

<div class="row">
<ul class="col s12 m10 offset-m1 l8 offset-l2" style="font-size: 20px">
{% assign speakers = site.data.workshop2024.speakers %}
{% for speaker in speakers %}
<li style="margin-bottom:10px; margin-left:10px; list-style-type: disc">
<span style="font-weight: bold">{{speaker[1].name}}</span>,
<span style="font-style: italic">{{speaker[1].affiliation}}</span>
<span style="font-weight: bold">Antonia Larese</span>,
<span style="font-style: italic">University of Padova (Italy)</span>
</li>
<li style="margin-bottom:10px; margin-left:10px; list-style-type: disc">
<span style="font-weight: bold">Carlos Roig</span>,
<span style="font-style: italic">CIMNE (Spain)</span>
</li>
<li style="margin-bottom:10px; margin-left:10px; list-style-type: disc">
<span style="font-weight: bold">Riccardo Rossi</span>,
<span style="font-style: italic">UPC/CIMNE (Spain)</span>
</li>
<li style="margin-bottom:10px; margin-left:10px; list-style-type: disc">
<span style="font-weight: bold">Suneth Warnakulasuriya</span>,
<span style="font-style: italic">Technische Universitat Braunschweig (Germany)</span>
</li>
<li style="margin-bottom:10px; margin-left:10px; list-style-type: disc">
<span style="font-weight: bold">Rubén Zorrilla Martínez</span>,
<span style="font-style: italic">UPC/CIMNE (Spain)</span>
</li>
{% endfor %}
</ul>
</div>

Expand Down

0 comments on commit a4dc52a

Please sign in to comment.