Skip to content

Commit f2b629e

Browse files
committed
Fixes recap page error
1 parent ac6b379 commit f2b629e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_pages/recap.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ <h2>Awesome Talks and Tutorials</h2>
109109
<p class="lead">We featured over <strong>60</strong> talks &amp; tutorials this year. Here's some crowd favorites!</p>
110110
<a href="/schedule/" class="button">See the full schedule</a>
111111
</header>
112-
{% for post in site.schedule | limit:20 %}
113-
{% if post.permalink && post.room != 'filler' %}
112+
{% for post in site.schedule %}
113+
{% if post.permalink and post.room != 'filler' %}
114114
<article
115115
class="event
116116
{% if post.room == "Salon A-E" %}loc-main

static/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23562,7 +23562,7 @@ var parent = module.bundle.parent;
2356223562
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
2356323563
var hostname = "" || location.hostname;
2356423564
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
23565-
var ws = new WebSocket(protocol + '://' + hostname + ':' + "51313" + '/');
23565+
var ws = new WebSocket(protocol + '://' + hostname + ':' + "65336" + '/');
2356623566

2356723567
ws.onmessage = function (event) {
2356823568
var data = JSON.parse(event.data);

0 commit comments

Comments
 (0)