Skip to content

Commit 4958ee0

Browse files
Rodrigo Candido da SilvaRodrigo Candido da Silva
Rodrigo Candido da Silva
authored and
Rodrigo Candido da Silva
committed
Initial commit
1 parent e5fe85b commit 4958ee0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+5340
-1
lines changed

404.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: layout
3+
title: Page not found!
4+
---
5+
6+
<div class="container">
7+
<div class="page-not-found">
8+
<h3>Uh oh! Page not found!</h3>
9+
</div>
10+
</div>

CNAME

Whitespace-only changes.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Fábio Madeira
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+63-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,63 @@
1-
# gujavasc.github.io
1+
2+
# Sustain
3+
4+
[![Build Status](https://secure.travis-ci.org/myjekyll/sustain.png?branch=gh-pages)](http://travis-ci.org/myjekyll/sustain)
5+
[![Ruby](https://img.shields.io/badge/ruby-2.4.2-blue.svg?style=flat)](http://travis-ci.org/myjekyll/sustain)
6+
[![Jekyll](https://img.shields.io/badge/jekyll-3.6.2-blue.svg?style=flat)](http://travis-ci.org/myjekyll/sustain)
7+
8+
Personal blog built with [Bootstrap](http://getbootstrap.com/), powered by [Jekyll](http://jekyllrb.com/) and freely
9+
hosted in [Github pages](https://pages.github.com/).
10+
11+
12+
## View the live demo
13+
14+
[Sustain Live Demo](https://myjekyll.github.io/sustain)
15+
16+
17+
## Screenshots
18+
19+
**Home page**
20+
![home page](https://raw.githubusercontent.com/myjekyll/sustain/gh-pages/assets/images/screen1.png)
21+
22+
**Blog page**
23+
![blog page](https://raw.githubusercontent.com/myjekyll/sustain/gh-pages/assets/images/screen2.png)
24+
25+
**Post page**
26+
![post page](https://raw.githubusercontent.com/myjekyll/sustain/gh-pages/assets/images/screen3.png)
27+
28+
**Projects page**
29+
![project page](https://raw.githubusercontent.com/myjekyll/sustain/gh-pages/assets/images/screen4.png)
30+
31+
32+
## How to use it
33+
34+
Simply clone/fork this repository, and then run `jekyll serve` inside the directory.
35+
Edit the site attributes in *_config.yml* and edit the various entries in *_includes/* and *_posts/*.
36+
37+
38+
## Issues and contributing
39+
40+
I have tested this install with Ruby v2.4.2 (Mac OS RVM) and Jekyll v3.6.2. If you run into any problems please log them on the [issue tracker](https://github.com/myjekyll/sustain/issues).
41+
42+
Feel free pull-request your patches and fixes.
43+
44+
#### Contributors
45+
46+
[Sumit Murari](https://github.com/murarisumit), November 2015
47+
48+
49+
## Thanks
50+
51+
Profile picture from [pexels](https://www.pexels.com/photo/portrait-black-african-ethnicity-person-9494/).
52+
53+
54+
## Copyright & License
55+
56+
Copyright (C) 2015-2017 - Released under the MIT License.
57+
58+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
59+
60+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
61+
62+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
63+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

_config.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# top level stuff you probably don't need to touch
2+
#highlighter: rouge
3+
markdown: kramdown
4+
rdiscount:
5+
extensions: [smart]
6+
#permalink: /:title.html
7+
paginate: 5
8+
plugins: [jekyll-paginate]
9+
port: 3000
10+
safe: true
11+
12+
13+
# edit here to achieve your personal greatness
14+
url: http://gujavasc.github.io/
15+
baseurl:
16+
title: GUJavaSC
17+
author: GUJavaSC
18+
description: Personal blog and resume
19+
avatar: logo.jpg
20+
facebook: gujavasc
21+
github: gujavasc # username
22+
twitter: gujavasc
23+
linkedin: gujavasc
24+
slack: gujavasc #e.g: users/2735833/proton1h1
25+
#Comment out if you don't want disqus
26+
disqus: username
27+
google_analytics: UA-69391421-1
28+
29+
30+
# needed for travis-ci build
31+
exclude: [vendor]

_includes/analytics.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', '{{ site.google_analytics }}', 'auto');
8+
ga('send', 'pageview');
9+
10+
</script>

_includes/disqus.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% if site.disqus %}
2+
<div class="disqus">
3+
<div id="disqus_thread"></div>
4+
<script type="text/javascript">
5+
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
6+
var disqus_shortname = '{{ site.disqus }}'; // required: replace example with your forum shortname
7+
var disqus_identifier = '{{ page.url }}';
8+
var disqus_url = '{{ site.url }}{{ page.url }}';
9+
10+
/* * * DON'T EDIT BELOW THIS LINE * * */
11+
(function() {
12+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
13+
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
14+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
15+
})();
16+
</script>
17+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
18+
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
19+
</div>
20+
{% endif %}

_includes/feed-detail.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<entry>
2+
<title type="text">{{ post.title | xml_escape }}</title>
3+
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url }}" />
4+
<id>{{ site.url }}{{ post.id }}</id>
5+
<published>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</published>
6+
<updated>{{ post.date | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
7+
<content type="html"><![CDATA[ {{ post.content }} ]]></content>
8+
</entry>

_includes/footer.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<footer>
2+
<div id="footer">
3+
<div class="container">
4+
<p class="text-muted">© All rights reserved. Powered by <a href="http://jekyllrb.com/">Jekyll</a> and
5+
<a href="http://www.github.com/myjekyll/sustain">sustain</a> with ♥</p>
6+
</div>
7+
</div>
8+
</footer>
9+
<div class="footer"></div>

_includes/header.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<nav class="navbar navbar-default">
2+
<div class="container">
3+
<div class="navbar-header">
4+
<!-- <a class="navbar-brand" href="{{ site.baseurl }}"><i class="fa fa-home"></i></a> -->
5+
</div>
6+
<div id="navbar">
7+
<!-- <ul class="nav navbar-nav navbar-right">
8+
<li><a href="{{ site.baseurl }}blog.html">BLOG</a></li>
9+
<li><a href="{{ site.baseurl }}projects.html">PROJECTS</a></li>
10+
<li><a href="http://myjekyll.github.io/vitae">RESUME</a></li>
11+
</ul> -->
12+
</div>
13+
</div>
14+
</nav>

_includes/projects.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<section id="projects">
2+
<div class="container">
3+
<h3>Projects</h3>
4+
<div class="panel panel-default">
5+
<div class="panel-body">
6+
<h5>
7+
<i class="fa fa-github"></i>&nbsp;&nbsp;<strong><a href="#">Project 1</a></strong>
8+
- Ei viderer tacimates pro, quem assum ea nam. Veritus omnesque eam te. Et natum mucius tamquam vel,
9+
ea dolorem volumus deterruisset nec. Graeci mentitum sea an, eu prima elaboraret est.
10+
</h5>
11+
<h5>
12+
<i class="fa fa-github"></i>&nbsp;&nbsp;<strong><a href="#">Project 2</a></strong>
13+
- An eripuit phaedrum qui, nec facer splendide ex, vel ea assum facilisi convenire.
14+
Te his neglegentur consectetuer.
15+
</h5>
16+
<h5>
17+
<i class="fa fa-github"></i>&nbsp;&nbsp;<strong><a href="#">Project 3</a></strong>
18+
- An alii quot tantas eum, doming platonem persecuti mea et, vim perpetua cotidieque delicatissimi in.
19+
</h5>
20+
<h5>
21+
<i class="fa fa-globe"></i>&nbsp;&nbsp;<strong><a href="#">Project 4</a></strong>
22+
- Vim an case vidit sententiae, est at euismod laboramus efficiantur. Ei sit brute lorem,
23+
ea eam timeam viderer aliquid, cu integre omittam moderatius quo.
24+
</h5>
25+
<h5>
26+
<i class="fa fa-globe"></i>&nbsp;&nbsp;<strong><a href="#">Project 5</a></strong>
27+
- Dicta causae meliore ex vel, in vix erant integre petentium. Vix ei nisl scripta recusabo,
28+
eam doming blandit facilisis.
29+
</h5>
30+
<h5>
31+
<i class="fa fa-cog"></i>&nbsp;&nbsp;<strong><a href="#">Project 6</a></strong>
32+
- Inermis recusabo elaboraret mea et, dicat neglegentur vim te. Nec et sanctus scriptorem,
33+
usu ex sapientem gubergren. Tamquam admodum ei usu.
34+
</h5>
35+
<h5>
36+
<i class="fa fa-cog"></i>&nbsp;&nbsp;<strong><a href="#">Project 7</a></strong>
37+
- Essent putant indoctum sed in, reprimique persequeris neglegentur te quo. Nam rebum
38+
tractatos partiendo at, debet ubique oporteat ut his.
39+
</h5>
40+
41+
42+
</div>
43+
</div>
44+
</div>
45+
</section>

_includes/social.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<div class="social">
2+
<h4>
3+
<a href="https://github.com/gujavasc"><i style="color: #5b5756;" class="fa fa-github fa-3x"></i></a>
4+
<a href="https://twitter.com/gujavasc"><i style="color: #5b5756;" class="fa fa-twitter fa-3x"></i></a>
5+
<a href="https://facebook.com/groups/gujavasc"><i style="color: #5b5756;" class="fa fa-facebook-square fa-3x"></i></a>
6+
<a href="https://www.linkedin.com/company/3218910/"><i style="color: #5b5756;" class="fa fa-linkedin fa-3x"></i></a>
7+
<a href="https://gujavasc.herokuapp.com/"><i style="color: #5b5756;" class="fa fa-slack fa-3x"></i></a>
8+
<a href="https://plus.google.com/communities/102439827020596326242"><i style="color: #5b5756;" class="fa fa-google-plus-square fa-3x"></i></a>
9+
<a href="https://www.youtube.com/channel/UCUcZ3RuXNok9pDBYp8_ZBSQ"><i style="color: #5b5756;" class="fa fa-youtube-square fa-3x"></i></a>
10+
</h4>
11+
</div>

_layouts/atom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<feed xmlns="http://www.w3.org/2005/Atom">
3+
{% if page.grouptype == 'tag' %}
4+
<title type="text" xml:lang="en">Posts Tagged “{{ page.tag }}” – {{ site.title }}</title>
5+
<link type="application/atom+xml" rel="self" href="{{ site.url }}/tag/{{ page.tag | replace:' ','-' | downcase }}/atom.xml"/>
6+
{% elsif page.grouptype == 'category' %}
7+
<title type="text" xml:lang="en">Posts Categorized “{{ page.category | titlecase }}” – {{ site.title }}</title>
8+
<link type="application/atom+xml" rel="self" href="{{ site.url }}/category/{{ page.category | replace:' ','-' | downcase }}/atom.xml"/>
9+
{% else %}
10+
<title type="text" xml:lang="en">{{ site.title }}</title>
11+
<link type="application/atom+xml" rel="self" href="{{ site.url }}/atom.xml"/>
12+
{% endif %}
13+
<link href="{{ site.url }}/"/>
14+
<id>{{ site.url }}/</id>
15+
<updated>{{ site.time | date: "%Y-%m-%dT%H:%M:%SZ" }}</updated>
16+
<author>
17+
<name>{{ site.author }}</name>
18+
<email>{{ site.email }}</email>
19+
</author>
20+
<rights type="text">Copyright © {{ site.time | date: "%Y" }} {{ site.author }}. All rights reserved.</rights>
21+
{{ content }}
22+
</feed>

_layouts/home.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: layout
3+
---
4+
5+
{{ content }}

_layouts/layout.html

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="author" content="{{ site.author }}" />
8+
<meta name="description" content="{{ site.description }}">
9+
<link rel="favicon" href="{{ site.baseurl }}static/img/favicon.ico">
10+
11+
{% if page.title %}
12+
<title>{{ page.title }}</title>
13+
{% else %}
14+
<title>{{ site.title }}</title>
15+
{% endif %}
16+
17+
<!-- Bootstrap -->
18+
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"
19+
integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ=="
20+
crossorigin="anonymous">
21+
22+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
23+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
24+
<!--[if lt IE 9]>
25+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
26+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
27+
<![endif]-->
28+
29+
<!-- Custom styles for this template -->
30+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}static/css/main.css" />
31+
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,200bold,400old" />
32+
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" />
33+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}static/css/syntax.css" />
34+
35+
<!-- Google Analytics -->
36+
{% include analytics.html %}
37+
</head>
38+
<!-- Main Body-->
39+
<body>
40+
<!-- Wrap all page content here -->
41+
<div id="wrap">
42+
<!-- Navbar header -->
43+
{% include header.html %}
44+
45+
{{ content }}
46+
47+
</div>
48+
<!-- Footer -->
49+
{% include footer.html %}
50+
51+
<!-- <a href="https://github.com/myjekyll/sustain"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a> -->
52+
53+
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
54+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
55+
<!-- Bootstrap core JavaScript -->
56+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"
57+
integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ=="
58+
crossorigin="anonymous"></script>
59+
<!-- Include all compiled plugins (below), or include individual files as needed -->
60+
<script src="{{ site.baseurl }}static/js/docs.min.js"></script>
61+
<script src="{{ site.baseurl }}static/js/main.js"></script>
62+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
63+
<script src="{{ site.baseurl }}static/js/ie10-viewport-bug-workaround.js"></script>
64+
</body>
65+
</html>

_layouts/page.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: layout
3+
---
4+
5+
{{ content }}

0 commit comments

Comments
 (0)