-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add program * updates * Update _data/sessions.yml Co-authored-by: dcwalk <[email protected]> * Update program.md Co-authored-by: dcwalk <[email protected]> * Update program.md Co-authored-by: dcwalk <[email protected]> * Update program.md Co-authored-by: dcwalk <[email protected]> * updates * bump by 30 * updates to program --------- Co-authored-by: dcwalk <[email protected]> Co-authored-by: dc <[email protected]>
- Loading branch information
1 parent
967f8d5
commit 84a94e9
Showing
15 changed files
with
359 additions
and
41 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
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
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 |
---|---|---|
@@ -1,16 +1,37 @@ | ||
{%- if presenter.name -%} | ||
<li> | ||
{%- if presenter.link -%} | ||
<a href="{{ presenter.link[0]['url'] }}" target="_blank" rel="noopener"> | ||
<div class="presenter program-block"> | ||
<div class="program-block-content p-1" id="{{ presenter.presenterID }}"> | ||
<header class="leading-relaxed"> | ||
<h3 class="presenter-name heading mb-0 text-base">{{ presenter.name }}</h3> | ||
{%- if presenter.affiliation -%} | ||
<h4 class="mt-0 font-normal text-sm mb-1">{{ presenter.affiliation}}</h4> | ||
{%-endif -%} | ||
{%- if presenter.socialMedia -%} | ||
<div class="mb-1"> | ||
{%for link in presenter.socialMedia%} | ||
<a href="{{link.url}}" target="_blank">{{link.text}}</a>{% if forloop.last %}{% else %}, {% endif %} | ||
{% endfor %} | ||
</div> | ||
{%- endif -%} | ||
</header> | ||
{%- if presenter.bio -%} | ||
<div class="presenter-bio"> | ||
<p>{{ presenter.bio }}</p> | ||
</div> | ||
{%- endif -%} | ||
<strong>{{ presenter.name }}</strong> | ||
{%- if presenter.link -%}</a>{%- endif -%} | ||
{%- if presenter.affiliation -%}, {{ presenter.affiliation}}{%-endif -%} | ||
|
||
<p class="mt-0"> | ||
{%- for link in presenter.link -%} | ||
<a href="{{link.url}}" target="_blank">{{link.text}}</a>{% unless forloop.last %}, {% endunless %} | ||
{%- endfor -%} | ||
</p> | ||
</li> | ||
<div class="presenter-links flex gap-4"> | ||
{%- if presenter.link -%} | ||
<div> | ||
<ul class="list-none pl-0 mt-0"> | ||
{%- for link in presenter.link -%} | ||
<li class="bio-sm-list-item"> | ||
<a href="{{link.url}}" target="_blank">{{link.text}}</a> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
</div> | ||
{%- endif -%} | ||
</div> | ||
</div> | ||
</div> | ||
{%- endif -%} |
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,29 @@ | ||
{%- if session.title -%} | ||
<div class="session-detail"> | ||
<div class="program-block-content p-1" {% unless session.skipProgramID %}id="{{ session.title | slugify }}"{% endunless %}> | ||
<header class="session-header mb-1"> | ||
<h3 class="session-title heading font-display">{{ session.title }}</h3> | ||
{%- if session.presenterID -%} | ||
{% assign presenters = site.data.presenters[include.year] %} | ||
{% assign presenterCount = session.presenterID.size %} | ||
<ul class="list-none pl-0 mt-0"> | ||
{%- for presenterID in session.presenterID -%} | ||
{%- for presenter in presenters -%} | ||
{%- if presenter.presenterID == presenterID -%} | ||
{% assign name = presenter.name %} | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{% assign presenterCount = presenterCount | minus:1 %} | ||
<li><h4 class="session-presenter m-0"><a href="#{{ presenterID }}">{{ name }}</a></h4></li> | ||
{%- endfor -%} | ||
</ul> | ||
{%- endif -%} | ||
</header> | ||
{%- if session.description -%} | ||
<div class="session-caption"> | ||
<p>{{ session.description | escape | newline_to_br | truncatewords: 75 }}{%- if session.descriptionLink -%}<span class="read-more"><a href="{{ session.descriptionLink }}" rel="noopener"> read more</a></span>{%- endif -%}</p> | ||
</div> | ||
{%- endif -%} | ||
</div> | ||
</div> | ||
{%- endif -%} |
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,4 @@ | ||
{%- for session in site.data.sessions -%} | ||
{%- assign sessionObject = session[1] | where: "sessionID", include.session-id | first -%} | ||
{{ sessionObject.sessionType }} | ||
{%- endfor -%} |
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,26 @@ | ||
{%- for session in site.data.sessions[include.year] -%} | ||
{%- if include.session-id == session.sessionID -%} | ||
<div class="session"> | ||
<header> | ||
<h3 class="session-title font-display"> | ||
{{ session.title }} | ||
</h3> | ||
{% if session.presenterID %} | ||
<h4 class="session-presenterID mt-05"> | ||
{% assign presenters = site.data.presenters[include.year] %} | ||
{% assign presenterCount = session.presenterID.size %} | ||
{%- for presenterID in session.presenterID -%} | ||
{%- for presenter in presenters -%} | ||
{%- if presenter.presenterID == presenterID -%} | ||
{% assign name = presenter.name %} | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{% assign presenterCount = presenterCount | minus:1 %} | ||
{{ name }}<br> | ||
{%- endfor -%} | ||
</h4> | ||
{% endif %} | ||
</header> | ||
</div> | ||
{%- endif -%} | ||
{%- endfor -%} |
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
layout: page | ||
order: 3 | ||
order: 6 | ||
title: "Environment" | ||
--- | ||
|
||
|
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
layout: page | ||
order: 3 | ||
order: 7 | ||
title: "Previous years" | ||
--- |
Oops, something went wrong.