<?php
/**
 * "I just know that there are two theories when arguing with
 * women. And neither one works." ~ John Marston | Read Dead Redemption
 *
 * @package    Geiseric
 * @author     Thiago Senna <thiago@thremes.com.br>
 * @copyright  Copyright (c) 2014, Thiago Senna
 * @license    http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 */

//* Load main/theme functionality
require_once( 'lib/geiseric.php' );

/*
 * Your custom functionality starts right here. So play with it
 * as usual. Once some features are done, tested and stable enough,
 * move them to a more apropriate functionality from file loaded right before.
 */
add_action( 'after_setup_theme', 'geiseric_setup' );

/**
 * The Custom Theme Setup
 */
function geiseric_setup()
{
    // TODO - Here goes your custom functionality...
}