From 1cfd5b108271762f41268fcd365f658a6da9d4c5 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Tue, 7 Jan 2014 19:49:09 -0500 Subject: [PATCH] Fix formatting on migration post --- _posts/2014-01-07-migration-to-jekyll.md | 8 ++++++++ about.md | 1 - 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/_posts/2014-01-07-migration-to-jekyll.md b/_posts/2014-01-07-migration-to-jekyll.md index be9edec..715c1cd 100644 --- a/_posts/2014-01-07-migration-to-jekyll.md +++ b/_posts/2014-01-07-migration-to-jekyll.md @@ -17,20 +17,27 @@ My favorite markdown editor also happens to be a windows only program MarkdownPa Github pages natively supports Jekyll integration which made it a good candidate to replace pelican. Now everything could be done with a simple push to the pages repository. I really liked this flow as now I could edit just markdown files and push the files straight to github. This meant using my favorite editor was now very easy to do. As with all conversions there is a bit of work to do to change from one system to another. Starting with the posts and pages a few things had to change. The posts needed to be renamed to have the publish date in the file-name so: + ~~~ pelican-red.md ~~~ + Became: + ~~~ 2013-08-03-pelican-red.md ~~~ + This was very straightforward and easy to do. Then the meta-data in the file had to be changed to the new format. With Jekyll an additional layout option was required. The change looks like: + ~~~ Title: pelican-red Date: 2013-08-03 Tags: pelican, python ~~~ + To: + ~~~ --- layout: post @@ -38,6 +45,7 @@ title: pelican-red tags: ['pelican', 'python'] --- ~~~ + Again this was really straightforward. After making these changes on all the posts and pages all of the content was ready to go. The next thing was to adapt the theme or create a new theme for the blog. I chose to create a new theme. ### Theme diff --git a/about.md b/about.md index efe439f..cb8a357 100644 --- a/about.md +++ b/about.md @@ -5,7 +5,6 @@ permalink: /about/ modified: 2014-01-07T00:00:00 --- -VoltaicIdeas is the personal blog of Andrew Senetar. ## Contents The contents of this blog cover topics such as electrical projects, python, and reviews. These topics are resultant from personal hobbies and projects of the author. The electrical projects consist of things such as motor controllers, battery management systems, and audio amplifiers. The python articles are targeted mainly at web development using python with frameworks such as [flask](http://flask.pocoo.org/) and [tornado](http://www.tornadoweb.org/). The reviews cover different products mainly in the technology area such as computer components and electronic devices.