friendica-github/view/theme/frio/templates/home.tpl

32 lines
706 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
*}}
{{* custom content from hook will replace everything. *}}
<div class="row">
{{if $content != '' }}
<div class="col-sm-12">
<div class="panel panel-default login-panel-content">
<div class="panel-body">
{{$content nofilter}}
</div>
</div>
</div>
{{else}}
<div class="col-md-7 col-sm-12 login-content">
{{if $customhome != false }}
{{include file="$customhome"}}
{{else}}
2018-12-21 05:05:41 +00:00
{{$defaultheader nofilter}}
{{/if}}
</div>
<div class="col-md-5 col-sm-12 login-form">
2018-12-21 05:05:41 +00:00
{{$login nofilter}}
</div>
{{/if}}
2024-08-24 18:23:27 +00:00
</div>