-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create agenda-day-details-online.html
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
!-- Agenda ONLINE Section --> | ||
{% comment %} | ||
Expects following parameters: day | ||
{% endcomment %} | ||
|
||
<div class="agenda-day"> | ||
{% for session in include.day.sessions-online %} | ||
<div class="agenda-session"> | ||
{% for event in session.events %} | ||
<div class="{{ event.element-class }} agenda-item"> | ||
<div> | ||
{{ event.time }} | ||
{% if event.room %} | ||
/ {{ event.room }} | ||
{% endif %} | ||
|
||
{% if event.url %} | ||
<a href="{{ event.url | relative_url }}"> | ||
{% endif %} | ||
|
||
<h4>{{ event.title }}</h4> | ||
{% if event.subtitle %} | ||
<h5>{{ event.subtitle }}</h5> | ||
{% endif %} | ||
|
||
{% if event.url %} | ||
</a> | ||
{% endif %} | ||
|
||
{% if event.subevents %} | ||
<ul> | ||
{% for subevent in event.subevents %} | ||
<li class="agenda-subitem"> | ||
{% if subevent.url %} | ||
<a href="{{ subevent.url | relative_url }}"> | ||
{% endif %} | ||
<h5>{{ subevent.title }}</h5> | ||
<h6>{{ subevent.subtitle }}</h6> | ||
{% if subevent.url %} | ||
</a> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> |