Skip to content

Commit b3f35c9

Browse files
committed
added tab and interviews sections
1 parent 9dc836e commit b3f35c9

File tree

6 files changed

+43
-8
lines changed

6 files changed

+43
-8
lines changed

_includes/header.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<div class="page-header">
22
<h3><a href="/">{{ site.title }}</a> <small>{{ site.tagline }}</small></h3>
3-
</div>
3+
</div>
4+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
2+
<script src="/assets/js/bootstrap.min.js"></script>
13
<script type="text/javascript">
24

35
var _gaq = _gaq || [];

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ <h3>{{ page.title }}</h3>
3232
</div>
3333
{% include footer.html %}
3434
</div>
35-
{% include analytics.html %}
35+
{% include javascripts.html %}
3636
</body>
3737
</html>

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
</div>
3131
{% include footer.html %}
3232
</div>
33-
{% include analytics.html %}
33+
{% include javascripts.html %}
3434
</body>
3535
</html>

assets/js/bootstrap.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,33 @@
33
title: arzumy md
44
---
55

6-
<ul class="unstyled">
7-
{% for post in site.posts %}
8-
<li><span class="label label-info">{{ post.date | date_to_string }}</span> <a href="{{ post.url }}">{{ post.title }}</a></li>
9-
{% endfor %}
10-
</ul>
6+
<div class="tabbable tabs-below">
7+
<div class="tab-content">
8+
<div class="tab-pane active" id="posts">
9+
<ul class="unstyled">
10+
{% for post in site.posts %}
11+
<li>
12+
<span class="label label-info">{{ post.date | date_to_string }}</span> <a href="{{ post.url }}">{{ post.title }}</a>
13+
</li>
14+
{% endfor %}
15+
</ul>
16+
</div>
17+
<div class="tab-pane" id="interviews">
18+
<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>
28+
</ul>
29+
</div>
30+
</div>
31+
<ul class="nav nav-tabs">
32+
<li class="active"><a href="#posts" data-toggle="tab">Posts</a></li>
33+
<li><a href="#interviews" data-toggle="tab">Interviews</a></li>
34+
</ul>
35+
</div>

0 commit comments

Comments
 (0)