aboutsummaryrefslogblamecommitdiffstats
path: root/view/theme/dispy/dark/theme.php
blob: e156b6a7dbb61a0c4c295c785ab91ddd21cfbb6d (plain) (tree)
1
2
3
4
5
6
7
8
9
10


     






                                                                




                        
                        














                                                                                                         
<?php

/*
 * Name: Dispy Dark
 * Description: Dispy Dark: Dark, Spartan, Sleek, and Functional
 * Version: 1.2.1
 * Author: Simon <http://simon.kisikew.org/>
 * Maintainer: Simon <http://simon.kisikew.org/>
 * Screenshot: <a href="screenshot.jpg">Screenshot</a>
 */

$a = get_app();
$a->theme_info = array(
    'family' => 'dispy',
    'name' => 'dark',
    'version' => '1.2.1'
);

function dispy_dark_init(&$a) {
    /** @purpose set some theme defaults
    */
    $cssFile = null;
    $colour = 'dark';
	$colour_path = "/dark/";

    // set css
    if (!is_null($cssFile)) {
        $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
    }
}