diff options
author | zottel <github@zottel.net> | 2012-04-27 08:10:04 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-04-27 08:10:04 +0200 |
commit | 17aba3033ff050a031ae578f0351db3da29ecbb7 (patch) | |
tree | ee1e97a2374a104ad966507a315a8947b5adb715 /view/theme/dispy/dark/theme.php | |
parent | 0116426a0eccc81382a670989032b0a095a65a20 (diff) | |
parent | a1f94ac59f677c61e97facb2835883191a9e48af (diff) | |
download | volse-hubzilla-17aba3033ff050a031ae578f0351db3da29ecbb7.tar.gz volse-hubzilla-17aba3033ff050a031ae578f0351db3da29ecbb7.tar.bz2 volse-hubzilla-17aba3033ff050a031ae578f0351db3da29ecbb7.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/theme/dispy/dark/theme.php')
-rw-r--r-- | view/theme/dispy/dark/theme.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/view/theme/dispy/dark/theme.php b/view/theme/dispy/dark/theme.php new file mode 100644 index 000000000..339c477a0 --- /dev/null +++ b/view/theme/dispy/dark/theme.php @@ -0,0 +1,31 @@ +<?php + +/* +* Name: Dispy Dark +* Description: Dispy Dark: Dark, Spartan, Sleek, and Functional +* Version: 1.2 +* 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' +); + +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); + } +} + |