-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove non-unix line breaks in layout templates
- Loading branch information
1 parent
796dbc9
commit 0e4e005
Showing
11 changed files
with
551 additions
and
551 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,5 +1,5 @@ | ||
{% include partials/header.html %} | ||
|
||
{{ content }} | ||
|
||
{% include partials/footer.html %} | ||
{% include partials/header.html %} | ||
|
||
{{ content }} | ||
|
||
{% include partials/footer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{% include partials/header.html %} | ||
|
||
{% assign this_room = page %} | ||
|
||
<h1 class="display-5 mb-3"> | ||
{% if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.data.lang[site.conference.lang].location.directions | default: "Directions" }} | ||
{% endif %} | ||
</h1> | ||
|
||
{% assign this_room = page %} | ||
|
||
{% unless site.conference.location.hide %} | ||
{% include partials/navbar_rooms.html %} | ||
{% endunless %} | ||
|
||
{{ content }} | ||
|
||
{% if site.conference.location.map %} | ||
<div id="map" class="mt-4 mb-3"></div> | ||
{% endif %} | ||
|
||
{% include partials/footer.html %} | ||
{% include partials/header.html %} | ||
|
||
{% assign this_room = page %} | ||
|
||
<h1 class="display-5 mb-3 text-break"> | ||
{% if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.data.lang[site.conference.lang].location.directions | default: "Directions" }} | ||
{% endif %} | ||
</h1> | ||
|
||
{% assign this_room = page %} | ||
|
||
{% unless site.conference.location.hide %} | ||
{% include partials/navbar_rooms.html %} | ||
{% endunless %} | ||
|
||
{{ content }} | ||
|
||
{% if site.conference.location.map %} | ||
<div id="map" class="mt-4 mb-3"></div> | ||
{% endif %} | ||
|
||
{% include partials/footer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{% include partials/header.html %} | ||
|
||
{% if page.title -%} | ||
<h1 class="display-5 mb-3">{{ page.title }}</h1> | ||
{%- endif %} | ||
|
||
{{ content }} | ||
|
||
{% if page.map %} | ||
<div id="map" class="mt-4 mb-3"></div> | ||
{% endif %} | ||
|
||
{% include partials/footer.html %} | ||
{% include partials/header.html %} | ||
|
||
{% if page.title -%} | ||
<h1 class="display-5 mb-3 text-break">{{ page.title }}</h1> | ||
{%- endif %} | ||
|
||
{{ content }} | ||
|
||
{% if page.map %} | ||
<div id="map" class="mt-4 mb-3"></div> | ||
{% endif %} | ||
|
||
{% include partials/footer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,70 @@ | ||
{%- assign this_room = page -%} | ||
|
||
{%- unless this_room.hide or site.conference.location.hide -%} | ||
{%- include partials/header.html -%} | ||
|
||
<!-- title for print: --> | ||
<h1 class="display-5 mb-3 d-none d-print-inline"> | ||
{{ this_room.name }} | ||
</h1> | ||
|
||
<!-- title shown in browser: --> | ||
<h1 class="display-5 mb-3 d-print-none"> | ||
{{ site.data.lang[site.conference.lang].location.rooms | default: "Rooms" }} | ||
</h1> | ||
|
||
{% include partials/navbar_rooms.html %} | ||
|
||
{{ content }} | ||
|
||
{% assign room_talks = false %} | ||
{% for d in site.data.program.days %} | ||
{% include partials/get_day_hash.html %} | ||
{% for r in d.rooms %} | ||
{% if this_room.name == r.name and r.talks.size > 0 %} | ||
{% unless room_talks %} | ||
<h5 class="mt-4 mb-2"> | ||
{{ site.data.lang[site.conference.lang].location.talks | default: "Talks in this room" }}: | ||
</h5> | ||
{% assign room_talks = true %} | ||
{% endunless %} | ||
|
||
<h6 class="mt-1 mb-0"> | ||
{{- day_name -}} | ||
</h6> | ||
|
||
<table class="list-program"> | ||
{%- for t in r.talks -%} | ||
{%- assign talk = site.talks | where: 'name', t.name | first -%} | ||
{%- include partials/get_main_category.html %} | ||
|
||
<tr> | ||
<td class="pr-2"> | ||
{%- include partials/get_talk_time.html -%} | ||
{%- assign talk_day_hide = true -%} | ||
{%- assign talk_time_styleclass = "w-100" -%} | ||
{% include partials/show_talk_time.html %} | ||
|
||
{%- assign live_button_styleclass = "w-100" -%} | ||
{% include partials/show_live_button.html %} | ||
</td> | ||
<td class="pl-2 border-soft-{{ main_cat_color }}"> | ||
<p class="mb-0"> | ||
{%- include partials/show_talk.html -%} | ||
</p> | ||
<p class="font-weight-light mb-0"> | ||
{%- include partials/list_speakers.html -%} | ||
</p> | ||
</td> | ||
</tr> | ||
{%- endfor -%} | ||
|
||
</table> | ||
{%- break -%} | ||
|
||
{% endif %} | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
{%- include partials/footer.html -%} | ||
{%- endunless -%} | ||
{%- assign this_room = page -%} | ||
|
||
{%- unless this_room.hide or site.conference.location.hide -%} | ||
{%- include partials/header.html -%} | ||
|
||
<!-- title for print: --> | ||
<h1 class="display-5 mb-3 d-none d-print-inline"> | ||
{{ this_room.name }} | ||
</h1> | ||
|
||
<!-- title shown in browser: --> | ||
<h1 class="display-5 mb-3 d-print-none text-break"> | ||
{{ site.data.lang[site.conference.lang].location.rooms | default: "Rooms" }} | ||
</h1> | ||
|
||
{% include partials/navbar_rooms.html %} | ||
|
||
{{ content }} | ||
|
||
{% assign room_talks = false %} | ||
{% for d in site.data.program.days %} | ||
{% include partials/get_day_hash.html %} | ||
{% for r in d.rooms %} | ||
{% if this_room.name == r.name and r.talks.size > 0 %} | ||
{% unless room_talks %} | ||
<h5 class="mt-4 mb-2"> | ||
{{ site.data.lang[site.conference.lang].location.talks | default: "Talks in this room" }}: | ||
</h5> | ||
{% assign room_talks = true %} | ||
{% endunless %} | ||
|
||
<h6 class="mt-1 mb-0"> | ||
{{- day_name -}} | ||
</h6> | ||
|
||
<table class="list-program"> | ||
{%- for t in r.talks -%} | ||
{%- assign talk = site.talks | where: 'name', t.name | first -%} | ||
{%- include partials/get_main_category.html %} | ||
|
||
<tr> | ||
<td class="pr-2"> | ||
{%- include partials/get_talk_time.html -%} | ||
{%- assign talk_day_hide = true -%} | ||
{%- assign talk_time_styleclass = "w-100" -%} | ||
{% include partials/show_talk_time.html %} | ||
|
||
{%- assign live_button_styleclass = "w-100" -%} | ||
{% include partials/show_live_button.html %} | ||
</td> | ||
<td class="pl-2 border-soft-{{ main_cat_color }}"> | ||
<p class="mb-0"> | ||
{%- include partials/show_talk.html -%} | ||
</p> | ||
<p class="font-weight-light mb-0"> | ||
{%- include partials/list_speakers.html -%} | ||
</p> | ||
</td> | ||
</tr> | ||
{%- endfor -%} | ||
|
||
</table> | ||
{%- break -%} | ||
|
||
{% endif %} | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
{%- include partials/footer.html -%} | ||
{%- endunless -%} |
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,47 @@ | ||
{% include partials/header.html %} | ||
|
||
<h1 class="display-5 mb-4"> | ||
{% if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.data.lang[site.conference.lang].speaker.overview | default: "Speakers" }} | ||
{% endif %} | ||
</h1> | ||
|
||
{{ content }} | ||
|
||
<div class="speakerlist"> | ||
{% assign cur_letter = false %} | ||
{% assign speakers = site.speakers | sort_natural: 'last_name' %} | ||
{% for speaker in speakers %} | ||
|
||
{% assign last_letter = speaker.last_name | slice: 0 | capitalize %} | ||
{% if cur_letter != last_letter %} | ||
{% if cur_letter %} | ||
</ul> | ||
</div> | ||
{% endif %} | ||
|
||
{% assign cur_letter = last_letter %} | ||
<div class="speakergroup"> | ||
<h3>{{ cur_letter }}</h3> | ||
<ul class="list-unstyled"> | ||
{% endif %} | ||
|
||
<li class="font-weight-light"> | ||
{% if speaker.hide %} | ||
{{ speaker.first_name }} {{ speaker.last_name }} | ||
{% else %} | ||
<a href="{{ speaker.url | prepend: site.baseurl }}"> | ||
{{ speaker.first_name }} {{ speaker.last_name }} | ||
</a> | ||
{% endif %} | ||
</li> | ||
|
||
{% endfor %} | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
{% include partials/footer.html %} | ||
{% include partials/header.html %} | ||
|
||
<h1 class="display-5 mb-4 text-break"> | ||
{% if page.title %} | ||
{{ page.title }} | ||
{% else %} | ||
{{ site.data.lang[site.conference.lang].speaker.overview | default: "Speakers" }} | ||
{% endif %} | ||
</h1> | ||
|
||
{{ content }} | ||
|
||
<div class="speakerlist"> | ||
{% assign cur_letter = false %} | ||
{% assign speakers = site.speakers | sort_natural: 'last_name' %} | ||
{% for speaker in speakers %} | ||
|
||
{% assign last_letter = speaker.last_name | slice: 0 | capitalize %} | ||
{% if cur_letter != last_letter %} | ||
{% if cur_letter %} | ||
</ul> | ||
</div> | ||
{% endif %} | ||
|
||
{% assign cur_letter = last_letter %} | ||
<div class="speakergroup"> | ||
<h3>{{ cur_letter }}</h3> | ||
<ul class="list-unstyled"> | ||
{% endif %} | ||
|
||
<li class="font-weight-light"> | ||
{% if speaker.hide %} | ||
{{ speaker.first_name }} {{ speaker.last_name }} | ||
{% else %} | ||
<a href="{{ speaker.url | prepend: site.baseurl }}"> | ||
{{ speaker.first_name }} {{ speaker.last_name }} | ||
</a> | ||
{% endif %} | ||
</li> | ||
|
||
{% endfor %} | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
{% include partials/footer.html %} |
Oops, something went wrong.