Skip to content

Commit

Permalink
Merge pull request #1 from vinitkumar/gh-pages
Browse files Browse the repository at this point in the history
Merge gh-pages into master
  • Loading branch information
Vinit Kumar committed Jun 30, 2014
2 parents 7453ada + a96ed07 commit 3bd9306
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
gcode
=====

Jekyll theme used in my blog (http://gotchacode.com)
gCode is a jekyll theme for tech blogs. It is clean and simple with good semantic
structure.

![gcode image](https://i.cloudup.com/haO7k4fzYk.gif)

## Usage:

- Install Jekyll from here(http://jekyllrb.com/)
- Fork the project.
- Change the fields in _config.yml
- Change the links in header.html.s

Test the website live while editing the code:

```sh
jekyll server --watch
```

## Issues:

Report issues or feature request [here](https://github.com/vinitkumar/gcode/issues).
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: gCode Theme
markdown: redcarpet
pygments: true
url: http://vinitkumar.me/gcode
paginate: 8
description: Jekyll theme for Programmers
intro: gCode is a Jekyll theme most suited to be used on tech blogs that like their content to shine.
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="header-container">
<header>
<ul class="nav">
<li><a href="/"><span class="mega-octicon octicon-terminal" style="margin-right: 6px;"></span>gCode</a></li>
<li><a href="/gcode"><span class="mega-octicon octicon-terminal" style="margin-right: 6px;"></span>gCode</a></li>
<li><a href="/about"><span class="mega-octicon octicon-person" style="margin-right: 6px;"></span>About</a></li>
</ul>
</header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ comments: true
categories:
---

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

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="listing">
{% for post in paginator.posts %}
<div class="post other link">
<h2><span class="mega-octicon octicon-flame" style="min-width: 32px;"></span><a href="{{post.url}}">{{ post.title }}</a></h2>
<h2><span class="mega-octicon octicon-flame" style="min-width: 32px;"></span><a href="/gcode{{post.url}}">{{ post.title }}</a></h2>
<p class="post-date">{{ post.date | date_to_string }}</p>

<p>{{ post.excerpt }}</p>
Expand Down

0 comments on commit 3bd9306

Please sign in to comment.