Skip to content

Commit c06c1a4

Browse files
theme files added
1 parent f7024e4 commit c06c1a4

26 files changed

+1235
-2
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
_site
2+
.DS_Store
3+
.jekyll
4+
.jekyll-metadata
5+
.bundle
6+
.sass-cache
7+
Gemfile
8+
Gemfile.lock
9+
node_modules
10+
package.json

404.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: page
3+
title: 404 - Page not found
4+
---
5+
6+
Sorry, we can't find that page that you're looking for. You can try again by going [back to the homepage]({{ site.baseurl }}/).
7+
8+
[<img src="{{ site.baseurl }}/images/404.jpg" alt="Constructocat by https://github.com/jasoncostello" style="width: 400px;"/>]({{ site.baseurl }}/)

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

README.md

-2
This file was deleted.

_config.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
#
2+
# This file contains configuration flags to customize your site
3+
#
4+
5+
# Name of your site (displayed in the header)
6+
name: Yoourr Name
7+
8+
# Short bio or description (displayed in the header)
9+
description: Programmer From Somewhere On Earth
10+
11+
12+
#
13+
# Flags below are optional
14+
#
15+
16+
# Includes an icon in the footer for each username you enter
17+
footer-links:
18+
dribbble:
19+
20+
facebook:
21+
flickr:
22+
github: AkshayAgarwal007
23+
instagram:
24+
linkedin: akshay-agarwal-782018a4
25+
pinterest:
26+
rss: # just type anything here for a working RSS icon
27+
twitter:
28+
stackoverflow: # your stackoverflow profile, e.g. "users/50476/bart-kiers"
29+
youtube: # channel/<your_long_string> or user/<user-name>
30+
googleplus: # anything in your profile username that comes after plus.google.com/
31+
32+
33+
# Enter your Disqus shortname (not your username) to enable commenting on posts
34+
# You can find your shortname on the Settings page of your Disqus account
35+
disqus:
36+
37+
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
38+
google_analytics:
39+
40+
# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
41+
# Used for Sitemap.xml and your RSS feed
42+
url:
43+
44+
# If you're hosting your site at a Project repository on GitHub pages
45+
# (http://yourusername.github.io/repository-name)
46+
# and NOT your User repository (http://yourusername.github.io)
47+
# then add in the baseurl here, like this: "/repository-name"
48+
baseurl: ""
49+
50+
#
51+
# !! You don't need to change any of the configuration flags below !!
52+
#
53+
54+
permalink: /:title/
55+
56+
# Jekyll 3 now only supports Kramdown for Markdown
57+
kramdown:
58+
# Use GitHub flavored markdown, including triple backtick fenced code blocks
59+
input: GFM
60+
# Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting
61+
syntax_highlighter: rouge
62+
syntax_highlighter_opts:
63+
# Use existing pygments syntax highlighting css
64+
css_class: 'highlight'
65+
66+
# Set the Sass partials directory, as we're using @imports
67+
sass:
68+
style: :expanded # You might prefer to minify using :compressed
69+
70+
# Use the following plug-ins
71+
gems:
72+
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
73+
- jekyll-feed # Create an Atom feed using the official Jekyll feed gem
74+
75+
# Exclude these files from your production _site
76+
exclude:
77+
- Gemfile
78+
- Gemfile.lock
79+
- LICENSE
80+
- README.md
81+
- CNAME

_includes/analytics.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{% if site.google_analytics %}
2+
<!-- Google Analytics -->
3+
<script>
4+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
5+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
6+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
7+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
8+
9+
ga('create', '{{ site.google_analytics }}', 'auto');
10+
ga('send', 'pageview', {
11+
'page': '{{ site.baseurl }}{{ page.url }}',
12+
'title': '{{ page.title | replace: "'", "\\'" }}'
13+
});
14+
</script>
15+
<!-- End Google Analytics -->
16+
{% endif %}

_includes/disqus.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% if site.disqus %}
2+
<div class="comments">
3+
<div id="disqus_thread"></div>
4+
<script type="text/javascript">
5+
6+
var disqus_shortname = '{{ site.disqus }}';
7+
8+
(function() {
9+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
10+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
11+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
12+
})();
13+
14+
</script>
15+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
16+
</div>
17+
{% endif %}

_includes/meta.html

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<meta charset="utf-8" />
2+
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
3+
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
4+
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
5+
6+
{% if page.excerpt %}
7+
<meta name="description" content="{{ page.excerpt| strip_html }}" />
8+
<meta property="og:description" content="{{ page.excerpt| strip_html }}" />
9+
{% else %}
10+
<meta name="description" content="{{ site.description }}">
11+
<meta property="og:description" content="{{ site.description }}" />
12+
{% endif %}
13+
<meta name="author" content="{{ site.name }}" />
14+
15+
{% if page.title %}
16+
<meta property="og:title" content="{{ page.title }}" />
17+
<meta property="twitter:title" content="{{ page.title }}" />
18+
{% endif %}

_includes/svg-icons.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{% if site.footer-links.dribbble %}<a href="https://dribbble.com/{{ site.footer-links.dribbble }}"><i class="icon-dribbble icon-2x"></i></a>{% endif %}
2+
{% if site.footer-links.email %}<a href="mailto:{{ site.footer-links.email }}"><i class="icon-envelope icon-2x"></i></a>{% endif %}
3+
{% if site.footer-links.facebook %}<a href="https://www.facebook.com/{{ site.footer-links.facebook }}"><i class="icon-facebook-sign icon-2x"></i></a>{% endif %}
4+
{% if site.footer-links.flickr %}<a href="https://www.flickr.com/{{ site.footer-links.flickr }}"><i class="icon-flickr icon-2x"></i></a>{% endif %}
5+
{% if site.footer-links.github %}<a href="https://github.com/{{ site.footer-links.github }}"><i class="icon-github icon-2x"></i></a>{% endif %}
6+
{% if site.footer-links.instagram %}<a href="https://instagram.com/{{ site.footer-links.instagram }}"><i class="icon-instagram icon-2x"></i></a>{% endif %}
7+
{% if site.footer-links.linkedin %}<a href="https://www.linkedin.com/in/{{ site.footer-links.linkedin }}"><i class="icon-linkedin-sign icon-2x"></i></a>{% endif %}
8+
{% if site.footer-links.pinterest %}<a href="https://www.pinterest.com/{{ site.footer-links.pinterest }}"><i class="icon-pinterest icon-2x"></i></a>{% endif %}
9+
{% if site.footer-links.rss %}<a href="{{ site.baseurl }}/feed.xml"><i class="svg-icon rss"></i></a>{% endif %}
10+
{% if site.footer-links.twitter %}<a href="https://www.twitter.com/{{ site.footer-links.twitter }}"><i class="icon-twitter icon-2x"></i></a>{% endif %}
11+
{% if site.footer-links.stackoverflow %}<a href="http://stackoverflow.com/{{ site.footer-links.stackoverflow }}"><i class="icon-stackexchange icon-2x"></i></a>{% endif %}
12+
{% if site.footer-links.youtube %}<a href="https://youtube.com/{{ site.footer-links.youtube }}"><i class="icon-youtube-play icon-2x"></i></a>{% endif %}
13+
{% if site.footer-links.googleplus %}<a href="https://plus.google.com/{{ site.footer-links.googleplus }}"><i class="icon-google-plus-sign icon-2x"></i></a>{% endif %}

_layouts/blog.html

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
5+
6+
{% include meta.html %}
7+
8+
<!--[if lt IE 9]>
9+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
10+
<![endif]-->
11+
12+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
13+
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
14+
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
15+
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
16+
17+
</head>
18+
19+
<body>
20+
21+
22+
<div class="intro-header">
23+
<div class="container">
24+
<div class="post-heading">
25+
<h1>{{page.title}}</h1>
26+
<span class="meta">Posted by <a href="{{ site.baseurl }}/about"> {{page.author}}
27+
</a> on {{ page.date | date: "%B %e, %Y" }}
28+
<a href="{{ site.baseurl }}/"> { Return to Blog }</a>
29+
</span>
30+
</div>
31+
32+
</div>
33+
</div>
34+
35+
36+
<div id="main" role="main" class="container">
37+
{{ content }}
38+
</div>
39+
40+
<div class="wrapper-footer">
41+
<div class="container">
42+
<footer class="footer">
43+
<div class="svg-icon">
44+
{% include svg-icons.html %}
45+
</div>
46+
</footer>
47+
</div>
48+
</div>
49+
50+
51+
{% include analytics.html %}
52+
</body>
53+
</html>

_layouts/default.html

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
5+
6+
{% include meta.html %}
7+
8+
<!--[if lt IE 9]>
9+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
10+
<![endif]-->
11+
12+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
13+
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
14+
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
15+
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
16+
17+
</head>
18+
19+
<body>
20+
21+
<div class="intro-header">
22+
<div class="wrapper-masthead">
23+
<div class="container">
24+
<header class="masthead clearfix">
25+
<div class="site-info">
26+
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
27+
<p class="site-description">{{ site.description }}</p>
28+
</div>
29+
<nav>
30+
<a href="{{ site.baseurl }}/">Blog</a>
31+
<a href="{{ site.baseurl }}/about">About</a>
32+
<a href="{{ site.baseurl }}/projects">Projects</a>
33+
</nav>
34+
</header>
35+
</div>
36+
</div>
37+
38+
<div class="container">
39+
<div class="space-small"></div>
40+
41+
<div class="centered">
42+
<ul class="ch-grid">
43+
<li>
44+
<div class="ch-item ch-img-1">
45+
<div class="ch-info-wrap">
46+
<div class="ch-info">
47+
<div class="ch-info-front ch-img-1"></div>
48+
<div class="ch-info-back">
49+
<h3>{{site.name}}</h3>
50+
<p></br><a href="https://linkedin.com/in/{{ site.footer-links.linkedin }}">View on LinkedIn</a></p>
51+
</div>
52+
</div>
53+
</div>
54+
</div>
55+
</li>
56+
</ul>
57+
</div>
58+
59+
<div class="space-medium"></div>
60+
61+
</div>
62+
</div>
63+
64+
<div id="main" role="main" class="container">
65+
{{ content }}
66+
</div>
67+
68+
<div class="wrapper-footer">
69+
<div class="container">
70+
<footer class="footer">
71+
<div class="svg-icon">
72+
{% include svg-icons.html %}
73+
</div>
74+
</footer>
75+
</div>
76+
</div>
77+
78+
{% include analytics.html %}
79+
</body>
80+
</html>

_layouts/page.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
---
4+
5+
<article class="page">
6+
7+
<h1>{{ page.title }}</h1>
8+
9+
<div class="entry">
10+
{{ content }}
11+
</div>
12+
</article>

_layouts/post.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: blog
3+
---
4+
5+
<article class="post">
6+
<div class="space-extra-small">
7+
</div>
8+
9+
<div class="entry">
10+
{{ content }}
11+
</div>
12+
13+
{% include disqus.html %}
14+
</article>
15+
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: The Eternal Lorem Ipsum Placeholder Text Here
4+
author: Your Name
5+
---
6+
7+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac.
8+
9+
## The Eternal Lorem Ipsum?
10+
-----
11+
12+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
13+
14+
Nam maximus tempor feugiat. Mauris tristique imperdiet nulla id egestas. Proin eget lobortis magna. Duis consectetur nibh at elit viverra congue. Ut eu turpis enim. Suspendisse laoreet, diam sed consequat sodales, felis dolor accumsan justo, nec scelerisque mi sem quis dolor. Etiam ornare venenatis massa, a suscipit ex. Ut quis lectus id nibh mattis rutrum. Nunc vel cursus eros, at blandit mi. Vivamus ac posuere libero.
15+
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: The Eternal Lorem Ipsum Placeholder Text Here
4+
author: Your Name
5+
---
6+
7+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac.
8+
9+
## The Eternal Lorem Ipsum?
10+
-----
11+
12+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam imperdiet urna eu dolor placerat varius. Vivamus eros augue, consequat id scelerisque nec, fringilla in est. Proin pellentesque malesuada mauris, quis aliquam augue vestibulum ac. Vestibulum ut feugiat nibh. Sed faucibus felis purus, sed convallis leo dictum vehicula.
13+
14+
Nam maximus tempor feugiat. Mauris tristique imperdiet nulla id egestas. Proin eget lobortis magna. Duis consectetur nibh at elit viverra congue. Ut eu turpis enim. Suspendisse laoreet, diam sed consequat sodales, felis dolor accumsan justo, nec scelerisque mi sem quis dolor. Etiam ornare venenatis massa, a suscipit ex. Ut quis lectus id nibh mattis rutrum. Nunc vel cursus eros, at blandit mi. Vivamus ac posuere libero.
15+

0 commit comments

Comments
 (0)