blob: 1c41cf4d66f774778ff09807f2c589f824dae552 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?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' : ''?>">
<?php if (FreshRSS_Auth::hasAccess()) {?>
<div class="link-back-wrapper">
<a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
</div>
<?php } ?>
<h1><?= _t('index.about') ?></h1>
<p><?= _t('index.about.freshrss_description') ?></p>
<h2><?= _t('index.about.project_website') ?></h2>
<a href="<?= FRESHRSS_WEBSITE ?>" target="_blank"><?= FRESHRSS_WEBSITE ?></a>
<h2><?= _t('index.about.documentation') ?></h2>
<a href="<?= FRESHRSS_WIKI ?>" target="_blank"><?= FRESHRSS_WIKI ?></a>
<h2><?= _t('index.about.bugs_reports') ?></h2>
<?= _t('index.about.github') ?>
<h2><?= _t('index.about.license') ?></h2>
<?= _t('index.about.agpl3') ?>
<?php
if (FreshRSS_Auth::hasAccess()) { ?>
<h2><?= _t('index.about.version') ?></h2>
<?= FRESHRSS_VERSION ?>
<?php
$env = FreshRSS_Context::systemConf()->environment;
if ($env !== 'production' && FreshRSS_Context::userConf()->is_admin) { ?>
<h2>data/config.php</h2>
<code>'environment' => '<?= $env; ?>'</code><br />
<?php
}
}
?>
<h2><?= _t('index.about.credits') ?></h2>
<p><?= _t('index.about.credits_content') ?></p>
</main>
<?php if (!FreshRSS_Auth::hasAccess()) { ?>
<footer class="main-footer">
<?php if (file_exists(TOS_FILENAME)) { ?>
<a href="<?= _url('index', 'tos') ?>"><?= _t('index.tos.title')?></a>
<?php } ?>
</footer>
<?php } ?>
|