friendica-github/view/theme/frio/templates/contact/list.tpl

28 lines
749 B
Smarty
Raw Normal View History

2024-08-24 18:23:27 +00:00
{{*
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*}}
{{* This is the standard template for showing contact lists. It is used e.g.
2016-04-20 01:15:35 +00:00
at the suggest page and also at many other places *}}
<div class="generic-page-wrapper">
{{include file="section_title.tpl"}}
2016-04-20 01:15:35 +00:00
{{$tab_str nofilter}}
2016-04-20 00:59:32 +00:00
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
2016-04-20 00:59:32 +00:00
{{foreach $contacts as $contact}}
<li>{{include file="contact/entry.tpl"}}</li>
2016-04-20 00:59:32 +00:00
{{/foreach}}
</ul>
<div class="clear"></div>
<div id="view-contact-end"></div>
2016-04-20 00:59:32 +00:00
{{$paginate nofilter}}
{{if $filtered}}
<p>{{$filtered nofilter}}</p>
{{/if}}
</div>