Customized my Blog

Customized my Blog

As you can see, I’ve customized my blog and created my own theme… which is not finished at all, but for the first time it will fit my requirements. Also I’ve added a plugin which enables the blog to highlight source code from different programming languages. This plugin is called wp-syntax. Here are some examples: First of all PHP:

<?php
function hello($strName) {
   echo "Hello $strName";
}
?>

And a second example with a unix shell script:

#!/bin/sh
var='Hello World!'
echo $var