aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/dark/theme.php
diff options
context:
space:
mode:
authorVasudev Kamath <kamathvasudev@gmail.com>2012-04-27 22:43:26 +0530
committerVasudev Kamath <kamathvasudev@gmail.com>2012-04-27 22:43:26 +0530
commit214ec91a3f2c5fec6cced93f669b3a9725f0e40a (patch)
treed05fd4c7e65cc89cf46d8347a2d0e6df135ed864 /view/theme/dispy/dark/theme.php
parentf1d84c10458986a0a014f844e784617401764b29 (diff)
parent4b92e3543c9af26e590cfecf561ff7483e66e6c9 (diff)
downloadvolse-hubzilla-214ec91a3f2c5fec6cced93f669b3a9725f0e40a.tar.gz
volse-hubzilla-214ec91a3f2c5fec6cced93f669b3a9725f0e40a.tar.bz2
volse-hubzilla-214ec91a3f2c5fec6cced93f669b3a9725f0e40a.zip
Merge branch 'master' of git://github.com/friendica/friendica
Diffstat (limited to 'view/theme/dispy/dark/theme.php')
-rw-r--r--view/theme/dispy/dark/theme.php31
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);
+ }
+}
+