-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
102 lines (94 loc) · 2.73 KB
/
index.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
layout: default
title: Hangouts de Javascript
is_index: true
next_title: "Pruebas: herramientas, frameworks y técnicas"
next_feat: Equipo ColombiaJS
next_date: 2013-04-16
next_time: "20:00 (BOG GMT-5)"
next_description: Improvisando por festivo en Colombia
next_bio: "<a href='//twitter.com/buritica' target='_blank'>@buritica</a> y los que caigan"
next_url: 0bHKC_PC65s
next_active:
---
{% if page.next_active != null %}
<div class="non-semantic-protector">
<div class="ribbon ">
<div class="ribbon-content title">Próximo Hangout
</div>
</div>
</div>
<div class="comming_soon">
<div class="inner">
<h2>{{ page.next_title }}</h2>
<p class="feat"> - feat - </p>
<h3>{{ page.next_feat }}</h3>
<time class="date" datetime="{{ page.next_date }}">{{ page.next_date | date_to_string }} a las {{page.next_time}}</time>
</div>
</div>
<div class="info">
<div class="about">
<h3>Introducción</h3>
<p>{{ page.next_description }}</p>
</div>
<div class="featuring">
<h3>Invitado</h3>
<p>{{ page.next_bio }}</p>
</div>
</div>
{% elsif page.next_url != null %}
<div class="non-semantic-protector">
<h2 class="ribbon live">
<div class="ribbon-content">
<span class="icon rec">^</span> <span class="title">En Vivo: {{ page.next_title }}</span>
</div>
</h2>
</div>
<div class="hangout">
<iframe width="760" height="428" src="http://www.youtube.com/embed/{{ page.next_url }}" frameborder="0" allowfullscreen></iframe>
</div>
<div class="info">
<div class="about">
<h3>Introducción</h3>
<p>{{ page.next_description }}</p>
</div>
<div class="featuring">
<h3>Invitado</h3>
<p>{{ page.next_bio }}</p>
</div>
</div>
{% endif %}
{% if page.next_url == null %}
{% assign first_post = site.posts.first %}
<div class="non-semantic-protector">
<h2 class="ribbon">
<div class="ribbon-content">
<a href="{{ first_post.url }}">
<span class="icon">H</span> <span class="title">Última charla: {{ first_post.title }} feat. {{ first_post.feat }}</span>
</a>
</div>
</h2>
</div>
<div class="hangout">
<iframe width="760" height="428" src="http://www.youtube.com/embed/{{ first_post.youtube_id }}" frameborder="0" allowfullscreen></iframe>
</div>
{% include date.html %}
<div class="info">
<div class="about">
<h3>Introducción</h3>
<p>{{ first_post.description }}</p>
</div>
<div class="featuring">
<h3>Invitado</h3>
<p>{{ first_post.bio }}</p>
</div>
{% if first_post.slides %}
<div class="slides">
<h3>Slides</h3>
<script async class="speakerdeck-embed" data-id="{{ first_post.slides }}" data-ratio="1.3333333333333333" src="//speakerdeck.com/assets/embed.js"></script>
</div>
{% endif %}
</div>
{% endif %}
{% comment %}
{% endcomment %}