blob: 649729952a1ca629de04613419628f8d5e9f6ad2 (
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
|
<div class="post content">
<a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a>
<h1><?php echo _t('index.about'); ?></h1>
<dl class="infos">
<dt><?php echo _t('index.about.project_website'); ?></dt>
<dd><a href="<?php echo FRESHRSS_WEBSITE; ?>"><?php echo FRESHRSS_WEBSITE; ?></a></dd>
<dt><?php echo _t('index.about.bugs_reports'); ?></dt>
<dd><?php echo _t('index.about.github'); ?></dd>
<dt><?php echo _t('index.about.license'); ?></dt>
<dd><?php echo _t('index.about.agpl3'); ?></dd>
<?php if (FreshRSS_Auth::hasAccess()): ?>
<dt><?php echo _t('index.about.version'); ?></dt>
<dd><?php echo FRESHRSS_VERSION; ?></dd>
<?php endif; ?>
</dl>
<p><?php echo _t('index.about.freshrss_description'); ?></p>
<h1><?php echo _t('index.about.credits'); ?></h1>
<p><?php echo _t('index.about.credits_content'); ?></p>
</div>
|