Skip to content

Commit 43bcf5b

Browse files
author
Ajeesh Mohan
committed
upgrade to jekyll3
1 parent b64bb60 commit 43bcf5b

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

_config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
permalink: /:year/:month/:title.html
22
lsi: false
3-
pygments: true
4-
markdown: kramdown
3+
highlighter: rouge

_layouts/default.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<meta name="description" content="Ramblings of Ajeesh Mohan">
1111
<meta name="viewport" content="width=device-width">
1212
<meta property="og:site_name" content="Mad about code"/>
13-
{% capture title %}{{ page.title | replace: '"':'&quot;' }}{% endcapture %}
13+
{% capture title %}{{ page.title | replace: '"','&quot;' }}{% endcapture %}
1414
{% if page.title %}<meta property="og:title" content="{{ title }}"/>{% endif %}
1515
{% if page.layout == 'post' %}<meta property="og:type" content="article"/>
1616
{% else %}<meta property="og:type" content="blog"/>{% endif %}
@@ -51,8 +51,8 @@ <h3 id="subtext">Ramblings of Ajeesh Mohan</h3>
5151
<a class="icon twitter" title="Follow me on twitter" href="https://twitter.com/ajeeshm">"</a>
5252
<a class="icon feed" title="Subscribe to this blog" href="/atom.xml" target="_blank">$</a>
5353
</section>
54-
<section id="copyright">&copy; Ajeesh 2013</section>
55-
<div id="server-info">Updated: {{ site.time }}</div>
54+
<section id="copyright">&copy; Ajeesh {{ 'now' | date: "%Y" }}</section>
55+
<div id="server-info">Updated: {{ site.time | date: "%A, %B %-d, %Y %T" }} IST</div>
5656
</footer>
5757
</body>
5858
</html>

atom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: nil
2+
layout: null
33
---
44
<?xml version="1.0" encoding="utf-8"?>
55
<feed xmlns="http://www.w3.org/2005/Atom">
@@ -10,7 +10,6 @@ layout: nil
1010
<id>http://madaboutcode.com/</id>
1111
<author>
1212
<name>Mad about code - Personal blog of Ajeesh Mohan</name>
13-
<email>team@pebblekites.com</email>
1413
</author>
1514
{% for post in site.posts %}
1615
{% unless post.forreview %}
@@ -22,7 +21,6 @@ layout: nil
2221
<content type="html">{{ post.content | replace:"='/","='http://madaboutcode.com/" | replace:'="/','="http://madaboutcode.com/' | xml_escape }}</content>
2322
<author>
2423
<name>Ajeesh Mohan</name>
25-
<email>madaboutcode@gmail.com</email>
2624
</author>
2725
</entry>
2826
{% endunless %}

startserver.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
echo Visit http://localhost:4000 in your browser to see the blog
3+
jekyll serve --watch --incremental

0 commit comments

Comments
 (0)