Skip to content

Commit d6c87a7

Browse files
committed
fix schedule in navbar
1 parent 8771884 commit d6c87a7

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

_data/navigation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
#- name: All Recordings
1414
# link: "recordings"
1515
- name: Schedule
16-
link: "schedule-button"
16+
link: "https://www.elixirconf.eu/schedule/"
17+
external: true
1718
#- name: Public videos
1819
# link: "video"
1920
- name: Speakers

_includes/lightning_talks.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<div class="row justify-content-center">
44
<div class="col-md-10 text-center">
55
<h1 class="title text-blue">Lightning Talks</h1>
6-
<p class="lead mb-5">Watch the recorded lightning talks from ElixirConf EU 2025</p>
6+
<p class="lead mb-5">
7+
Watch the recorded lightning talks from ElixirConf EU 2025
8+
</p>
79
</div>
810
</div>
911
<div class="row">
@@ -15,12 +17,20 @@ <h1 class="title text-blue">Lightning Talks</h1>
1517
<h3>{{ talk.title }}</h3>
1618
</div>
1719
<div class="lightning-talk-speaker">
18-
<p><i class="fas fa-user-circle mr-2"></i>{{ talk.name }}</p>
20+
<p>
21+
<i class="fas fa-user-circle mr-2"></i>{{
22+
talk.name }}
23+
</p>
1924
</div>
2025
{% if talk.youtube %}
2126
<div class="lightning-talk-video mt-3">
22-
<a href="{{ talk.youtube }}" target="_blank" class="btn btn-sm btn-outline-danger video-link">
23-
<i class="fab fa-youtube mr-2"></i>Watch on YouTube
27+
<a
28+
href="{{ talk.youtube }}"
29+
target="_blank"
30+
class="btn btn-sm btn-outline-danger video-link"
31+
>
32+
<i class="fab fa-youtube mr-2"></i>Watch on
33+
YouTube
2434
</a>
2535
</div>
2636
{% endif %}
@@ -29,7 +39,7 @@ <h3>{{ talk.title }}</h3>
2939
</div>
3040
</div>
3141
</div>
32-
<div class="row mt-5">
42+
<!-- <div class="row mt-5">
3343
<div class="col-md-12">
3444
<div class="banner-3" id="call-for-lightning-talks">
3545
<h3 class="text">Submit your lightning talk for the next ElixirConf EU!</h3>
@@ -40,6 +50,6 @@ <h3 class="text">Submit your lightning talk for the next ElixirConf EU!</h3>
4050
>
4151
</div>
4252
</div>
43-
</div>
53+
</div>-->
4454
</div>
45-
</div>
55+
</div>

_includes/navigation.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
</li>
2424
{% else %}
2525
<li>
26-
{% if item.link contains '-' %}
26+
{% if item.external %}
27+
<a href="{{ item.link }}" target="_blank">{{ item.name }}</a>
28+
{% elsif item.link contains '-' %}
2729
<a href="/{{ item.link }}">{{ item.name }}</a>
2830
{% else %}
2931
<a class="page-scroll" href="#{{ item.link }}">{{ item.name }}</a>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- end of tickets -->
2929
{% comment %} {% include register.html %} {% endcomment %}
3030
<!-- end of register -->
31-
{% include banner-schedule.html %}
31+
{% comment %}{% include banner-schedule.html %}{% endcomment %}
3232
<!-- end of schedule banner -->
3333
{% include keynotes.html %}
3434
<!-- end of speakers -->

0 commit comments

Comments
 (0)