-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.njk
31 lines (31 loc) · 1.72 KB
/
index.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NEJS CONF 2015–2019</title>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/facepile.css">
<script>
// TypeKit
;(function( d ) {
var config = {
kitId: 'ppn2vqj',
scriptTimeout: 3000
},
h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='//use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
})( document );
</script>
</head>
<body>
<h1>NEJS CONF</h1>
<p class="description">NEJS CONF was a single day, single track conference from 2015–2019 dedicated to Web Development and JavaScript. It was born from the <a href="https://nebraskajs.com/">NebraskaJS community</a>. Have a look at a <a href="https://www.zachleat.com/web/nejsconf/final/">final recap of our five years of events</a>.</p>
{% for event in years %}
<p class="prior">
<a href="https://{{ event.year }}.nejsconf.com/">{{ event.year }}</a>
{% if event.recap %}<span class="recap"> / <a href="{{ event.recap }}">Recap</a></span>{% endif %}
<span class="facepile">{% for speaker in speakers %}{% if speaker.year == event.year %}<a href="https://twitter.com/{{ speaker.twitter }}">{% avatar speaker.twitter %}</a>{% endif %}{% endfor %}</span>
</p>
{% endfor %}
</body>
</html>