aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/light/theme.php
blob: 94a699b703f072d238c95e57a538eefbc6c581cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

/*
 * Name: Dispy Light
 * Description: Dispy Light: Light, Spartan, Sleek, and Functional
 * 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' => 'light',
);

function dispy_light_init(&$a) {

    /** @purpose set some theme defaults
    */
    $cssFile = null;
    $colour = 'light';
	$colour_path = "/light/";

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