added themes deprecated or deleted at Hackathon 2016 in Berlin as they were at the 3.5 release
This commit is contained in:
parent
c39a9c812b
commit
aa199e931f
1344 changed files with 164625 additions and 0 deletions
25
darkbubble/theme.php
Normal file
25
darkbubble/theme.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* Name: Dark Bubble
|
||||
* Version: 1.0
|
||||
* Maintainer: Mike Macgirvin <mike@macgirvin.com>
|
||||
*/
|
||||
|
||||
|
||||
function darkbubble_init(&$a) {
|
||||
$a->theme_info = array(
|
||||
'extends' => 'testbubble',
|
||||
);
|
||||
set_template_engine($a, 'smarty3');
|
||||
|
||||
|
||||
$a->page['htmlhead'] .= <<< EOT
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
$('html').click(function() { $("#nav-notifications-menu" ).hide(); });
|
||||
});
|
||||
</script>
|
||||
EOT;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue