diff options
author | friendica <info@friendica.com> | 2012-04-26 15:35:25 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-26 15:35:25 -0700 |
commit | 2d94d216a3869827f890cbc2ca71f8b3d8ad935f (patch) | |
tree | 5a6a7df85b48f27ddefea6f0badc81fd13095221 /view/theme/dispy/dark/theme.php | |
parent | f8e7f28f403336dc288ab53eba1834de26790598 (diff) | |
parent | 3ee998dbaf83e92dd1ceaee4d35ca942210c5e24 (diff) | |
download | volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.tar.gz volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.tar.bz2 volse-hubzilla-2d94d216a3869827f890cbc2ca71f8b3d8ad935f.zip |
Merge https://github.com/friendica/friendica into pull
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); + } +} + |