summaryrefslogtreecommitdiff
path: root/core/views
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-05 05:20:20 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-05 05:20:20 +0000
commitb82332192a7420cce045612014ad6f54b02974c3 (patch)
tree7fae26a41040c0f7af6caddbfacb8c8db6250502 /core/views
parentf7560a7e8b15abdd549e4c59bbb39c6416844d9e (diff)
The carousel block is now off into its own module. The
sidebar.html.php file loops over $theme->blocks() which in turn calls carousel::block() which uses the Block object to create a standard block UI. Hooray!
Diffstat (limited to 'core/views')
-rw-r--r--core/views/block.html.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/views/block.html.php b/core/views/block.html.php
new file mode 100644
index 00000000..bd6bc44b
--- /dev/null
+++ b/core/views/block.html.php
@@ -0,0 +1,9 @@
+<? defined("SYSPATH") or die("No direct script access."); ?>
+<div id="<?= $id ?>" class="gBlock">
+ <div class="gBlockHeader">
+ <h2><?= $title ?></h2>
+ </div>
+ <div class="gBlockContent">
+ <?= $content ?>
+ </div>
+</div>