@@ -217,6 +217,7 @@ layout: base.njk
217217 ' start_time' : sch .start_time ,
218218 ' end_time' : sch .end_time ,
219219 ' title' : sch .title ,
220+ ' author' : sch .author ,
220221 ' bg_color' : sch .color
221222 }]) %}
222223 {% endfor %}
@@ -257,15 +258,16 @@ layout: base.njk
257258 {% for item in mobile_sorting %}
258259 {% if item .type == ' fixed' %}
259260 <div class =" w-full p-4 border border-black" style =" background-color : {{ item.bg_color }};" >
260- {% if " Keynote " in item .title %}
261+ {% if item . start_time == " 09:20 " or item .start_time == " 17:00 " %}
261262 <div class =" text-left" >
262263 <p class =" font-medium text-sm text-black px-2 mb-0 rounded-lg inline-block" style =" background-color : #1FFFB4 " >
263264 Keynote
264265 </p >
265266 </div >
266267 {% endif %}
267268 <p class =" mb-0 font-bold" >{{ item .start_time }} - {{ item .end_time }} </p >
268- <p class =" mb-0 text-lg" >{{ item .title |upper }} </p >
269+ <p class =" mb-1 text-md line-clamp-2" >{{ item .title |upper }} </p >
270+ <p class =" font-semibold mb-0 text-md text-pycon-blue" >{{ item .author }} </p >
269271 </div >
270272 {% else %}
271273 {% if item .url %}
@@ -329,13 +331,16 @@ layout: base.njk
329331 {# single fixed — occupy full width #}
330332 <div class =" w-full flex flex-wrap gap-0 py-0" >
331333 <div class =" w-full p-4 border border-black" style =" background-color : {{ event.bg_color }};" >
332- {% if " Keynote" in event .title %}
333- <div class =" text-left mb-1" >
334- <p class =" font-medium text-sm text-black px-2 mb-0 inline-block rounded-lg" style =" background-color : #1FFFB4 " >Keynote</p >
334+ {% if event .start_time == " 09:20" or event .start_time == " 17:00" %}
335+ <div class =" text-left" >
336+ <p class =" font-medium text-sm text-black px-2 mb-0 inline-block rounded-lg" style =" background-color : #1FFFB4 " >
337+ Keynote
338+ </p >
335339 </div >
336340 {% endif %}
337341 <p class =" mb-0 font-bold" >{{ event .start_time }} - {{ event .end_time }} </p >
338- <p class =" mb-0 text-lg" >{{ event .title }} </p >
342+ <p class =" mb-1 text-md line-clamp-2" >{{ event .title }} </p >
343+ <p class =" font-semibold mb-0 text-md text-pycon-blue" >{{ event .author }} </p >
339344 </div >
340345 </div >
341346
@@ -347,13 +352,17 @@ layout: base.njk
347352 {% if event .type == ' fixed' %}
348353 <div class =" col-span-3 flex flex-wrap gap-0 py-0 border border-black" style =" background-color : {{ event.bg_color }};" >
349354 <div class =" w-full my-auto p-4" >
350- {% if " Keynote" in event .title %}
351- <div class =" text-left mb-1" >
352- <p class =" font-medium text-sm text-black px-2 mb-0 inline-block rounded-lg" style =" background-color : #1FFFB4 " >Keynote</p >
355+ {% if event .start_time == " 09:20" or event .start_time == " 17:00" %}
356+ <div class =" text-left" >
357+ <p class =" font-medium text-sm text-black px-2 mb-0 inline-block rounded-lg" style =" background-color : #1FFFB4 " >
358+ Keynote
359+ </p >
353360 </div >
354361 {% endif %}
362+ {{ event |dump }}
355363 <p class =" mb-0 font-bold" >{{ event .start_time }} - {{ event .end_time }} </p >
356- <p class =" mb-0 text-lg" >{{ event .title }} </p >
364+ <p class =" mb-1 text-md line-clamp-2" >{{ event .title }} </p >
365+ <p class =" font-semibold mb-0 text-md text-pycon-blue" >{{ event .author }} </p >
357366 </div >
358367 </div >
359368 {% else %}
0 commit comments