themes-community/cleardia/group_side.tpl
Tobias Diekershoff 8d2992395c added facepark and cleardia themes
Two themes from 2012, cleardia derived from facepark.

Tony Baldwin had them archived at https://github.com/tonybaldwin/friendica-themes-extra/tree/master/facepark but they were not created by him.
2023-10-17 08:59:53 +02:00

30 lines
892 B
Smarty
Executable file

<div id="group-sidebar" class="widget">
<div class="title tool">
<h3 class="label">$title</h3>
<a href="group/new" title="$createtext" class="action"><span class="icon text s16 add"></span></a>
</div>
<div id="sidebar-group-list">
<ul>
{{ for $groups as $group }}
<li class="tool {{ if $group.selected }}selected{{ endif }}">
<a href="$group.href" class="label">
$group.text
</a>
{{ if $group.edit }}
<a href="$group.edit.href" class="action"><span class="icon text s10 edit"></span></a>
{{ endif }}
{{ if $group.cid }}
<input type="checkbox"
class="{{ if $group.selected }}ticked{{ else }}unticked {{ endif }} action"
onclick="contactgroupChangeMember('$group.id','$group.cid');return true;"
{{ if $group.ismember }}checked="checked"{{ endif }}
/>
{{ endif }}
</li>
{{ endfor }}
</ul>
</div>
</div>