-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from jayfo/seminar_template
Update Seminar Template and Pages
- Loading branch information
Showing
25 changed files
with
1,235 additions
and
138 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
language: python | ||
|
||
python: | ||
- "3.4" | ||
- "3.5" | ||
|
||
install: | ||
# Install Ruby | ||
|
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,47 +1,57 @@ | ||
{% assign seminars = include.seminars | sort: 'date' %} | ||
{% if include.seminars == "upcoming" %} | ||
{% assign seminars = site.seminars | seminar_upcoming: site.time | sort: 'date' %} | ||
{% elsif include.seminars == "previous" %} | ||
{% assign seminars = site.seminars | seminar_previous: site.time | sort: 'date' | reverse %} | ||
{% endif %} | ||
|
||
<html> | ||
<section> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
{% for item_seminar in seminars %} | ||
<div class="col-md-2"> | ||
{% for item_seminar in seminars %} | ||
{% if item_seminar.tbd %} | ||
{% assign item_publish_speakers = null %} | ||
{% assign item_publish_title = "TBD" %} | ||
{% else %} | ||
{% assign item_publish_speakers = item_seminar.speakers %} | ||
{% assign item_publish_title = item_seminar.title %} | ||
{% endif %} | ||
<div class="col-md-3"> | ||
<div class="col-xs-12"> | ||
<h4> | ||
{{ item_seminar.date | date: "%m/%d/%y"}} | ||
</h4> | ||
<div class="pull-left"> | ||
{{ item_seminar.time }} | ||
</div> | ||
<div class="pull-left"> | ||
{{ item_seminar.location }} | ||
</div> | ||
<div class="clearfix"> | ||
</div> | ||
</div> | ||
<div class="col-md-10"> | ||
<h4> | ||
<div class="col-xs-12"> | ||
{{ item_seminar.time }} | ||
</div> | ||
<div class="col-xs-12"> | ||
{{ item_seminar.location }} | ||
</div> | ||
</div> | ||
<div class="col-md-9"> | ||
<div class="col-xs-12"> | ||
<h4> | ||
<a href="{{ item_seminar.url }}"> | ||
{{ item_seminar.title }} | ||
{{ item_publish_title }} | ||
</a> | ||
</h4> | ||
{% for item_names in item_seminar.name %} | ||
{% for item_name in item_names offset: 1 %} | ||
</div> | ||
{% for item_speaker in item_publish_speakers %} | ||
<div class="col-xs-12"> | ||
{% for item_name in item_speaker.name offset:1 %} | ||
{{ item_name }} | ||
{% endfor %} | ||
{% if forloop.last %} | ||
{{ item_names[0] }} | ||
{% else %} | ||
{{ item_names[0] | append:',' }} | ||
{% endif %} | ||
{% endfor %} | ||
<br /> | ||
{{ item_seminar.affiliation }} | ||
</div> | ||
<div class="col-md-12"> | ||
<hr /> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{{ item_speaker.name[0] }} | ||
</div> | ||
<div class="col-xs-12"> | ||
{{ item_speaker.affiliation }} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<div class="col-md-12"> | ||
<hr /> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</section> | ||
</html> |
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
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
Oops, something went wrong.