forked from pranavk/pranavk.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testpage.html
73 lines (67 loc) · 2.78 KB
/
testpage.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
---
layout: pro
title: testpage
group: projects
tabify : h2
project :
name : jekyllbootstrap.com
tagline : "Jekyll Bootstrap is the quickest way to start and publish your Jekyll powered blog. It's 100% compatible with GitHub pages."
source : http://github.com/plusjade/jekyll-bootstrap
website : http://jekyllbootstrap.com
tagGroups :
-
name : platforms
tags : [{name : web, why : "Jekyll bootstrap runs in the web-browser with plans to add mobile browser support."}]
-
name : languages
tags :
-
{name : ruby, why : "Jekyll is implemented in ruby and I am most proficient in ruby." }
-
{name : HTML, why : "HTML is needed for the website."}
-
{name : CSS, why : "CSS is needed for the website."}
-
{name : javascript, why : "Since GitHub Pages does not run any custom ruby plugins I'm taking advantage of client-side programming to accomplish more advanced features."}
-
name : frameworks
tags :
-
{name : jquery, why : "jQuery is the defacto way to interact easily with the DOM."}
-
{name : twitter-bootstrap, why : "I chose twitter bootstrap as a way to standardize and speed up design iteration."}
-
{name : jekyll, why : "Jekyll was chosen because the static-blog movement really aligns with putting 'publishing' ahead of everything. No server infrastructure or database requirements means the fastest path to publishing." }
-
name : infrastructure
tags : [{name : github-pages, why : "Deploying to GitHub pages is beautiful in terms of speed and workflow. As a git/github user deploying cannot possibly be faster."}]
-
name : templating
tags :
-
{name : "liquid", why : "To keep compatibility with GitHub Pages I needed to make extensive use of Liquid. All helpers are essentially packaged liquid code made available to the user."}
-
{name : "mustache", why : "On the client side mustache is used to easily provide HTML templating to data-objects." }
---
<h2>Who I am ?</h2>
{% for tagGroup in page.project.tagGroups %}
<tr>
<td class="tag-group">{{ tagGroup.name }}</td>
<td><ul>
{% for tag in tagGroup.tags %}
<li><a href="#" rel='popover' title="Why?" data-content="{{ tag.why }}">{{ tag.name }}</a></li>
{% endfor %}
</ul></td>
</tr>
{% endfor %}
<br />
<br />
<h2>Recent posts</h2>
<!--- ALTERNATIVE TO SHOW POSTS
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> : <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
-->
{% assign posts = site.posts %}
{% assign listing_limit = 3 %}
{% include post-listing.html %}