mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-14 23:41:09 -05:00
18 lines
473 B
PHTML
18 lines
473 B
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_View $this */
|
|
if (FreshRSS_Auth::hasAccess()) {
|
|
$this->partial('aside_configure');
|
|
}
|
|
?>
|
|
<main class="post content<?= !FreshRSS_Auth::hasAccess() ? ' centered' : ''?>">
|
|
<h1><?= _t('index.tos.title')?></h1>
|
|
<?= $this->terms_of_service ?>
|
|
</main>
|
|
|
|
<?php if (!FreshRSS_Auth::hasAccess()) { ?>
|
|
<footer class="main-footer">
|
|
<a href="<?= _url('index', 'about') ?>"><?= _t('gen.freshrss.about') ?></a>
|
|
</footer>
|
|
<?php } ?>
|