Skip to content

Commit 3bd9306

Browse files
author
Vinit Kumar
committed
Merge pull request #1 from vinitkumar/gh-pages
Merge gh-pages into master
2 parents 7453ada + a96ed07 commit 3bd9306

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
gcode
22
=====
33

4-
Jekyll theme used in my blog (http://gotchacode.com)
4+
gCode is a jekyll theme for tech blogs. It is clean and simple with good semantic
5+
structure.
6+
7+
![gcode image](https://i.cloudup.com/haO7k4fzYk.gif)
8+
9+
## Usage:
10+
11+
- Install Jekyll from here(http://jekyllrb.com/)
12+
- Fork the project.
13+
- Change the fields in _config.yml
14+
- Change the links in header.html.s
15+
16+
Test the website live while editing the code:
17+
18+
```sh
19+
jekyll server --watch
20+
```
21+
22+
## Issues:
23+
24+
Report issues or feature request [here](https://github.com/vinitkumar/gcode/issues).

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: gCode Theme
22
markdown: redcarpet
33
pygments: true
4+
url: http://vinitkumar.me/gcode
45
paginate: 8
56
description: Jekyll theme for Programmers
67
intro: gCode is a Jekyll theme most suited to be used on tech blogs that like their content to shine.

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="header-container">
22
<header>
33
<ul class="nav">
4-
<li><a href="/"><span class="mega-octicon octicon-terminal" style="margin-right: 6px;"></span>gCode</a></li>
4+
<li><a href="/gcode"><span class="mega-octicon octicon-terminal" style="margin-right: 6px;"></span>gCode</a></li>
55
<li><a href="/about"><span class="mega-octicon octicon-person" style="margin-right: 6px;"></span>About</a></li>
66
</ul>
77
</header>

_posts/2014-05-01-the-pragmatic-programmer-checklist.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ comments: true
66
categories:
77
---
88

9-
Last year, I read a great book on Programming and development (The Prgramatic Programmer).
9+
Last year, I read a great book on Programming and development (The Pragmatic Programmer).
1010
Here is a gist of checklist you must do in case you are developer. These are very good
1111
and for sure will help you evolve as a better developer.
1212

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="listing">
77
{% for post in paginator.posts %}
88
<div class="post other link">
9-
<h2><span class="mega-octicon octicon-flame" style="min-width: 32px;"></span><a href="{{post.url}}">{{ post.title }}</a></h2>
9+
<h2><span class="mega-octicon octicon-flame" style="min-width: 32px;"></span><a href="/gcode{{post.url}}">{{ post.title }}</a></h2>
1010
<p class="post-date">{{ post.date | date_to_string }}</p>
1111

1212
<p>{{ post.excerpt }}</p>

0 commit comments

Comments
 (0)