diff options
Diffstat (limited to 'view/theme/dispy/dark/theme.php')
-rw-r--r-- | view/theme/dispy/dark/theme.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/view/theme/dispy/dark/theme.php b/view/theme/dispy/dark/theme.php deleted file mode 100644 index f73a12765..000000000 --- a/view/theme/dispy/dark/theme.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php - -/* - * Name: Dispy Dark - * Description: Dispy Dark: Dark, 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' => 'dark', -); - -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); - } -} - |