-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.028 Renamed pages. Pages are now sorted Created menu. menu_list helper added. updated about added new blog page. Added new layout to blog page Tags, Categories and Archives moved as tabs to blog page added & updated contact added & updated music added supporting scripts & css changed site layout
- Loading branch information
1 parent
822c416
commit 5a32b4d
Showing
38 changed files
with
14,981 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: page | ||
name: "Home" | ||
group: navigation | ||
title: "Sathyam M Vellal" | ||
tagline: Music, Food and Code - The three dimensions to my world. | ||
permalink: "index.html" | ||
--- | ||
{% include JB/setup %} | ||
|
||
Welcome to my personal website! The website is still incomplete but my [blog]({{BASE_PATH}}/blog.html) is active! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
--- | ||
layout: page | ||
name: "Blog" | ||
group: navigation | ||
title: "Blog" | ||
permalink: "blog.html" | ||
--- | ||
{% include JB/setup %} | ||
|
||
<ul class="nav nav-tabs"> | ||
<li class="active"><a href="#latest-posts" data-toggle="tab">Latest Posts </a></li> | ||
<li><a href="#tags" data-toggle="tab">Tags </a></li> | ||
<li><a href="#categories" data-toggle="tab">Categories </a></li> | ||
<li><a href="#archive" data-toggle="tab">Archive </a></li> | ||
</ul> | ||
<div class="tabbable"> | ||
<div class="tab-content"> | ||
<div class="tab-pane active" id="latest-posts"> | ||
<p> | ||
<h4> Blog Posts </h4> | ||
<ul class="posts"> | ||
{% for post in site.posts %} | ||
<li> | ||
<span>{{ post.date | date_to_string }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> | ||
<p>{{ post.description }}</p> | ||
</li> | ||
<hr> | ||
{% endfor %} | ||
</ul> | ||
</p> | ||
</div> | ||
<div class="tab-pane" id="tags"> | ||
<p> | ||
<div> | ||
<ul class="tag_box inline"> | ||
{% assign tags_list = site.tags %} | ||
{% include JB/tags_list %} | ||
</ul> | ||
<hr/> | ||
<div class="well" style="padding: 8px 0;"> | ||
<ul class="nav nav-list"> | ||
{% for tag in site.tags %} | ||
<li class="nav-header" id="{{ tag[0] }}-ref">{{ tag[0] }}</li> | ||
{% assign pages_list = tag[1] %} | ||
{% include JB/pages_list %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</p> | ||
</div> | ||
<div class="tab-pane" id="categories"> | ||
<p> | ||
<div> | ||
<ul class="tag_box inline"> | ||
{% assign categories_list = site.categories %} | ||
{% include JB/categories_list %} | ||
</ul> | ||
<hr/> | ||
<div class="well" style="padding: 8px 0;"> | ||
<ul class="nav nav-list"> | ||
{% for category in site.categories %} | ||
<li class="nav-header" id="{{ category[0] }}-ref">{{ category[0] | join: "/" }}</li> | ||
{% assign pages_list = category[1] %} | ||
{% include JB/pages_list %} | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</p> | ||
</div> | ||
<div class="tab-pane" id="archive"> | ||
<p> | ||
{% assign posts_collate = site.posts %} | ||
{% include JB/posts_collate %} | ||
</p> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
layout: page | ||
name: "Music" | ||
group: menu | ||
title: "Music" | ||
permalink: "music.html" | ||
--- | ||
{% include JB/setup %} | ||
|
||
#### Coming Soon ... | ||
In the meantime, you can visit [boxmusic][1] | ||
|
||
[1]: https://app.box.com/boxmusic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: page | ||
name: "Pages" | ||
group: menu | ||
title: "Pages" | ||
permalink: "pages.html" | ||
--- | ||
{% include JB/setup %} | ||
|
||
<h2>All Pages</h2> | ||
<ul> | ||
{% assign pages_list = site.pages %} | ||
{% include JB/pages_list %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: page | ||
name: "About Me" | ||
title: "About Me" | ||
group: menu | ||
tagline: | ||
permalink: "about.html" | ||
--- | ||
|
||
Hello! I'm Sathyam and this is my personal website. I'm a 21 year old final year undergraduate student pursing Computer Science & Engineering at PES Institute of Technology. I did my schooling in Sri Kumaran Children's Home, SSLC stream and my +2 at Sri Bhagawan Mahaveer Jain College, VV Puram with the BASE integerated scheme. | ||
|
||
![Me @ gIndia, Bangalore][1] | ||
|
||
#### This page will be updated with more details soon! | ||
|
||
[1]: http://dl.dropboxusercontent.com/u/30013949/sathyam-public.jpg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: page | ||
name: "Contact Me" | ||
group: menu | ||
title: "Contact" | ||
description: "" | ||
permalink: "contact.html" | ||
--- | ||
{% include JB/setup %} | ||
|
||
#### Coming Soon ... | ||
In the meantime you can email me [here][1] | ||
|
||
[1]: mailto:[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{% assign pages_list = ["about.html", "archives.html", "categories.html"] | ||
|
||
{% for node in pages_list %} | ||
{% if node.title != null %} | ||
{% if group == null or group == node.group %} | ||
{% if page.url == node.url %} | ||
<li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.name}}</a></li> | ||
{% else %} | ||
<li><a href="{{ BASE_PATH }}{{node.url}}">{{node.name}}</a></li> | ||
{% endif %} | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{% comment %}<!-- | ||
The pages_list include is a listing helper. | ||
Usage: | ||
1) assign the 'pages_list' variable to a valid array of pages or posts. | ||
2) include JB/pages_list | ||
example: | ||
<ul> | ||
{% assign pages_list = site.pages %} | ||
{% include JB/pages_list %} | ||
</ul> | ||
|
||
Grouping: (optional): | ||
assign the 'group' variable to constrain the list to only pages/posts | ||
in the given group. Note you must define the group manually in the page/post | ||
meta-data to use this feature. | ||
Grouping is mainly helpful for non-post pages. | ||
If you want to group posts, it's easier/better to tag them, then pass the tagged posts array. | ||
i.e. site.tags.cool_tag (this returns an array of posts tagged: cool_tag) | ||
|
||
This helper can be seen in use at: ../_layouts/default.html | ||
-->{% endcomment %} | ||
|
||
{% if site.JB.pages_list.provider == "custom" %} | ||
{% include custom/pages_list %} | ||
{% else %} | ||
{% assign sorted_pages = pages_list | sort:"name" %} | ||
{% for node in sorted_pages %} | ||
{% if node.title != null %} | ||
{% if group == null or group == node.group %} | ||
<li><a href="{{ BASE_PATH }}{{node.url}}">{{node.name}}</a></li> | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
{% endif %} | ||
{% assign pages_list = nil %} | ||
{% assign group = nil %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
layout: post | ||
name: "Hello World" | ||
title: "Hello World" | ||
description: "def begin():" | ||
category: general | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.