diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-04-12 08:40:17 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-04-12 08:40:17 +0200 |
commit | 6c50eba206ee4f3e43580ef4a29f24f04760b248 (patch) | |
tree | 6b206f66985ce744c671b6c9c90844766231d276 /view/theme/quattro/generic_links_widget.tpl | |
parent | e992e296851fd049af045d8851f3b46d0fe73a3f (diff) | |
download | volse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.tar.gz volse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.tar.bz2 volse-hubzilla-6c50eba206ee4f3e43580ef4a29f24f04760b248.zip |
quattro: move center css to style.php. add tpl for generic_links_widget
Diffstat (limited to 'view/theme/quattro/generic_links_widget.tpl')
-rw-r--r-- | view/theme/quattro/generic_links_widget.tpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/theme/quattro/generic_links_widget.tpl b/view/theme/quattro/generic_links_widget.tpl new file mode 100644 index 000000000..29580bbc7 --- /dev/null +++ b/view/theme/quattro/generic_links_widget.tpl @@ -0,0 +1,11 @@ +<div class="widget"> + {{if $title}}<h3>$title</h3>{{endif}} + {{if $desc}}<div class="desc">$desc</div>{{endif}} + + <ul> + {{ for $items as $item }} + <li class="tool {{ if $item.selected }}selected{{ endif }}"><a href="$item.url" class="link">$item.label</a></li> + {{ endfor }} + </ul> + +</div> |