mirror of
https://github.com/friendica/friendica
synced 2024-11-15 20:13:55 +00:00
27 lines
749 B
Smarty
27 lines
749 B
Smarty
{{*
|
|
* 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.
|
|
at the suggest page and also at many other places *}}
|
|
<div class="generic-page-wrapper">
|
|
{{include file="section_title.tpl"}}
|
|
|
|
{{$tab_str nofilter}}
|
|
|
|
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
|
|
{{foreach $contacts as $contact}}
|
|
<li>{{include file="contact/entry.tpl"}}</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
<div class="clear"></div>
|
|
<div id="view-contact-end"></div>
|
|
|
|
{{$paginate nofilter}}
|
|
|
|
{{if $filtered}}
|
|
<p>{{$filtered nofilter}}</p>
|
|
{{/if}}
|
|
</div>
|