This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
talks.html
55 lines (52 loc) · 2.01 KB
/
talks.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: Geekcamp.SG - Talks
description: Attending Geekcamp.SG 2016? Vote for the talks you're interested in!
---
{% include head.html %}
<div class="blog-masthead">
<div class="container">
<nav class="blog-nav">
<a class="blog-nav-item" href="/index.html">Home</a>
<a class="blog-nav-item" href="/schedule.html">Schedule</a>
<a class="blog-nav-item" href="https://www.eventbrite.com/e/geekcampsg-2016-registration-18323491055">Tickets</a>
<a class="blog-nav-item active" href="/talks.html">Submitted Talks</a>
<a class="blog-nav-item" href="/team.html">The Team</a>
</nav>
</div>
</div>
<div class="container">
<div class="blog-header">
<h1 class="blog-title">Geekcamp.SG</h1>
<p class="lead blog-description">By Geeks. For Geeks.</p>
<div class="fb-like" data-href="http://geekcamp.sg" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div>
<a class="twitter-follow-button"
href="https://twitter.com/geekcamp">
Follow @geekcamp</a>
</div>
{% assign talks = site.data.talks | sort: "slug" %}
<div class="flex-table">
<div class="flex-row flex-table-header">
<div class="flex-cell">Title</div>
<div class="flex-cell">Speaker</div>
<div class="flex-cell flex-cell-wide">Description</div>
</div>
{% for talk in talks %}
{% if talk.hidden != true %}
<div class="flex-row">
<div class="flex-cell" data-header="Title"><a href="/{{ talk.slug | datapage_url: 'talks' }}">{{ talk.talk.title }}</a></div>
<div class="flex-cell" data-header="Speaker">
{% if talk.speaker.link %}
<a href="{{ talk.speaker.link }}">
{% endif %}
{{ talk.speaker.name }}
{% if talk.speaker.link %}
</a>
{% endif %}
</div>
<div class="flex-cell flex-cell-wide" data-header="Description"><p>{{ talk.talk.description | newline_to_br }}</p></div>
</div>
{% endif %}
{% endfor %}
</div>
</div><!-- Container -->
{% include footer.html %}