-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new portfolio items and added portfolio details page
- Loading branch information
Showing
23 changed files
with
212 additions
and
582 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,7 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'jekyll', '3.1.6' | ||
|
||
group :jekyll_plugins do | ||
gem 'jekyll-feed' | ||
end |
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,41 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
colorator (0.1) | ||
ffi (1.9.14) | ||
jekyll (3.1.6) | ||
colorator (~> 0.1) | ||
jekyll-sass-converter (~> 1.0) | ||
jekyll-watch (~> 1.1) | ||
kramdown (~> 1.3) | ||
liquid (~> 3.0) | ||
mercenary (~> 0.3.3) | ||
rouge (~> 1.7) | ||
safe_yaml (~> 1.0) | ||
jekyll-feed (0.7.2) | ||
jekyll-sass-converter (1.4.0) | ||
sass (~> 3.4) | ||
jekyll-watch (1.5.0) | ||
listen (~> 3.0, < 3.1) | ||
kramdown (1.12.0) | ||
liquid (3.0.6) | ||
listen (3.0.8) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
mercenary (0.3.6) | ||
rb-fsevent (0.9.8) | ||
rb-inotify (0.9.7) | ||
ffi (>= 0.5.0) | ||
rouge (1.11.1) | ||
safe_yaml (1.0.4) | ||
sass (3.4.22) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
jekyll (= 3.1.6) | ||
jekyll-feed | ||
|
||
BUNDLED WITH | ||
1.13.6 |
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,7 +1,11 @@ | ||
url: www.ishwaragarwal.com | ||
url: http://ishwaragarwal.com | ||
baseurl: "" | ||
exclude: ['README.md'] | ||
permalink: pretty | ||
title: Ishwar Agarwal | ||
description: This is a personal website of Ishwar Agarwal, where he provides brief information about him, and his portfolio. He also has a blog | ||
gem: | ||
- jekyll-feed | ||
sass: | ||
sass_dir: _scss | ||
style: compressed |
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
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
layout: base | ||
--- | ||
<!-- Banner start --> | ||
<section id="banner" class="root-sec brand-bg padd-tb-55 single-banner blogpage-banner-wrap"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="clearfix blog-banner-text blog-single-banner"> | ||
<div class="col-md-12"> | ||
<h2 class="title">{{ page.title }}</h2> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> <!-- ./Banner end --> | ||
|
||
<!-- Portfolio Container--> | ||
<section id="all-posts" class="root-sec grey lighten-5 blogpage-posts-wrap"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="clearfix all-blog-post blog-inner with-sidebar"> | ||
|
||
<!-- post container start--> | ||
<div class="col-sm-8"> | ||
<article class="single-post-page"> | ||
<div class="thumb-wrap"> | ||
<img src="{% if page.media_source %}{{site.baseurl}}/images/portfolio/{{page.media_source}}{% endif %}" alt=""> | ||
</div> | ||
<div class="single-post-content">{{content}}</div> | ||
{% include socialShare.html %} | ||
</article> | ||
</div> <!-- ./post container end--> | ||
|
||
<!-- Sidebar start--> | ||
<div class="col-sm-4"> | ||
<div class="primary-sidebar"> | ||
<aside class="single-widget"> | ||
<h2 class="widget-title">RECENT POSTS</h2> | ||
<ul> | ||
{% for post in site.posts limit:5 %} | ||
<li> | ||
<a href="{{ post.url | prepend: site.baseurl}}">{{ post.title }}</a> | ||
<span>{{ post.date | date: "%b %-d, %Y" }}</span> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</aside> | ||
<aside class="single-widget"> | ||
<h2 class="widget-title">CATEGORIES</h2> | ||
<ul> | ||
{% for category in site.data.blogCategories %} | ||
<li><a href="{{site.baseurl}}/category/{{category.key}}">{{category.name}}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</aside> | ||
</div> | ||
</div> <!-- ./sidebar end--> | ||
</div> | ||
</div> | ||
</div> <!-- ./container end--> | ||
</section> <!-- ./Portfolio Container end--> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.