diff options
author | friendica <info@friendica.com> | 2012-08-09 19:09:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-09 19:09:55 -0700 |
commit | f2a7fcf8220ef497c8f39f0c9ec3175757f53128 (patch) | |
tree | 5341c592ee54f231bb5268537ce345e831f50cb8 /view/theme/quattro/tpl/fileas_widget.tpl | |
parent | 0292d46e5de06529012ebb14ce934fb476d595d0 (diff) | |
download | volse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.tar.gz volse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.tar.bz2 volse-hubzilla-f2a7fcf8220ef497c8f39f0c9ec3175757f53128.zip |
more theme modularisation and css/js management
Diffstat (limited to 'view/theme/quattro/tpl/fileas_widget.tpl')
-rw-r--r-- | view/theme/quattro/tpl/fileas_widget.tpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/view/theme/quattro/tpl/fileas_widget.tpl b/view/theme/quattro/tpl/fileas_widget.tpl new file mode 100644 index 000000000..1e5a76044 --- /dev/null +++ b/view/theme/quattro/tpl/fileas_widget.tpl @@ -0,0 +1,12 @@ +<div id="fileas-sidebar" class="widget"> + <h3>$title</h3> + <div id="nets-desc">$desc</div> + + <ul class="fileas-ul"> + <li class="tool {{ if $sel_all }}selected{{ endif }}"><a href="$base" class="fileas-link fileas-all">$all</a></li> + {{ for $terms as $term }} + <li class="tool {{ if $term.selected }}selected{{ endif }}"><a href="$base?f=&file=$term.name" class="fileas-link">$term.name</a></li> + {{ endfor }} + </ul> + +</div> |