File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 55---
66{% include navbar.html %}
77
8- {% comment %}
8+ {% comment %}
99 Jekyll プラグインで事前計算されたタイムテーブル表を使用
1010 ロジックはプラグインで計算済み。Liquid は描画のみを担当
1111{% endcomment %}
1717{% assign total_slots = tte.total_slots %}
1818{% assign total_rooms = tte.total_rooms %}
1919
20- < section class ="w-[calc(100dvw-40px)] max-w-7xl mx-auto mt-25 xl:mt-5 ">
20+ < section class ="w-[calc(100dvw-40px)] max-w-7xl mx-auto mt-25 xl:mt-15 ">
2121 < h2 class ="text-4xl text-center mb-8 ">
2222 タイムテーブル
2323 < span class ="block mt-3 text-2xl "> TIME TABLE</ span >
@@ -43,12 +43,12 @@ <h2 class="text-4xl text-center mb-8">
4343 {% for slot in (0..total_slots) %}
4444 < tr >
4545 < th scope ="row " class ="ttable__cell ttable__cell--start "> {{ time_labels[slot] }}</ th >
46-
46+
4747 {% comment %} 各イベントを描画 {% endcomment %}
4848 {% for room_index in (0..total_rooms) %}
4949 {% assign event = events[slot][room_index] %}
5050 {% assign room = rooms[room_index] %}
51-
51+
5252 {% if event == 'continued' %}
5353 {% comment %} イベント継続中 (rowspan で描画するため出力は不要) {% endcomment %}
5454 {% elsif event %}
You can’t perform that action at this time.
0 commit comments