Skip to content

Commit 57860ad

Browse files
committed
refactor talks/interview
1 parent 0018c60 commit 57860ad

File tree

2 files changed

+42
-21
lines changed

2 files changed

+42
-21
lines changed

_config.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,35 @@ meta:
99

1010
pygments: true
1111
permalink: /:title
12+
13+
content:
14+
talks:
15+
-
16+
date: 25 Aug 2012
17+
url: "https://www.youtube.com/watch?v=3q5UQ4N5hy0"
18+
title: "Ruby on Rails Malaysia Meetup - How We Deploy SAYS.com (unedited Google Hangout)"
19+
-
20+
date: 28 Sep 2011
21+
url: "http://webcamp.my/2011/10/arzumy-md-%E2%80%94-i-paul-the-octopus/"
22+
title: "WebCamp Neun: WCKL All-Stars - “I, Paul the Octopus”"
23+
-
24+
date: 27 Oct 2010
25+
url: "http://www.slideshare.net/arzumy/webcampkl-9-30second-tips-to-happiness-16-apps-in-8-minutes"
26+
title: "WebCampKL 9 - 30-second Tips To Happiness. 16 Apps In 8 Minutes"
27+
-
28+
date: 24 Feb 2009
29+
url: "http://www.slideshare.net/arzumy/ruby-on-rails-kickass"
30+
title: "MDeC Preseed Meetup - Ruby on Rails Kick-ass"
31+
interviews:
32+
-
33+
date: 12 Jan 2012
34+
url: "http://bfm.my/lifehacks.html"
35+
title: "BFM 89.9: The Business Station - Lifehacks"
36+
-
37+
date: 28 Sep 2011
38+
url: "http://www.bfm.my/techtalk_hackweekday2011.html"
39+
title: "BFM 89.9: The Business Station - HackWEEKDAY 2011"
40+
-
41+
date: 01 Sep 2005
42+
url: "http://www.nib.com.my/archives/text/view/9426915?pos=3&hide_header=1&resultset=nstpec%3Awww/cross-search/search.php%3A_1355414435%3Aresultset"
43+
title: "New Straits Times: Computimes - Hacking competition winners"

index.html

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,31 +16,20 @@
1616
</div>
1717
<div class="tab-pane" id="interviews">
1818
<ul class="unstyled">
19-
<li>
20-
<span class="label label-info">12 Jan 2012</span> <a href="http://bfm.my/lifehacks.html">BFM 89.9: The Business Station - Lifehacks</a>
21-
</li>
22-
<li>
23-
<span class="label label-info">28 Sep 2011</span> <a href="http://www.bfm.my/techtalk_hackweekday2011.html">BFM 89.9: The Business Station - HackWEEKDAY 2011</a>
24-
</li>
25-
<li>
26-
<span class="label label-info">01 Sep 2005</span> <a href="http://www.nib.com.my/archives/text/view/9426915?pos=3&hide_header=1&resultset=nstpec%3Awww/cross-search/search.php%3A_1355414435%3Aresultset">New Straits Times: Computimes - Hacking competition winners</a>
27-
</li>
19+
{% for interview in site.content.interviews %}
20+
<li>
21+
<span class="label label-info">{{ interview.date }}</span> <a href="{{ interview.url }}">{{ interview.title }}</a>
22+
</li>
23+
{% endfor %}
2824
</ul>
2925
</div>
3026
<div class="tab-pane" id="talks">
3127
<ul class="unstyled">
32-
<li>
33-
<span class="label label-info">25 Aug 2012</span> <a href="https://www.youtube.com/watch?v=3q5UQ4N5hy0&feature=player_embedded">Ruby on Rails Malaysia Meetup - How We Deploy SAYS.com (unedited Google Hangout)</a>
34-
</li>
35-
<li>
36-
<span class="label label-info">28 Sep 2011</span> <a href="http://webcamp.my/2011/10/arzumy-md-%E2%80%94-i-paul-the-octopus/">WebCamp Neun: WCKL All-Stars - “I, Paul the Octopus”</a>
37-
</li>
38-
<li>
39-
<span class="label label-info">27 Oct 2010</span> <a href="http://www.slideshare.net/arzumy/webcampkl-9-30second-tips-to-happiness-16-apps-in-8-minutes">WebCampKL 9 - 30-second Tips To Happiness. 16 Apps In 8 Minutes</a>
40-
</li>
41-
<li>
42-
<span class="label label-info">24 Feb 2009</span> <a href="http://www.slideshare.net/arzumy/ruby-on-rails-kickass">MDeC Preseed Meetup - Ruby on Rails Kick-ass</a>
43-
</li>
28+
{% for talk in site.content.talks %}
29+
<li>
30+
<span class="label label-info">{{ talk.date }}</span> <a href="{{ talk.url }}">{{ talk.title }}</a>
31+
</li>
32+
{% endfor %}
4433
</ul>
4534
</div>
4635
</div>

0 commit comments

Comments
 (0)