about.phtml 780 B

1234567891011121314151617181920212223242526
  1. <div class="post content">
  2. <a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
  3. <h1><?= _t('index.about') ?></h1>
  4. <dl class="infos">
  5. <dt><?= _t('index.about.project_website') ?></dt>
  6. <dd><a href="<?= FRESHRSS_WEBSITE ?>"><?= FRESHRSS_WEBSITE ?></a></dd>
  7. <dt><?= _t('index.about.bugs_reports') ?></dt>
  8. <dd><?= _t('index.about.github') ?></dd>
  9. <dt><?= _t('index.about.license') ?></dt>
  10. <dd><?= _t('index.about.agpl3') ?></dd>
  11. <?php if (FreshRSS_Auth::hasAccess()): ?>
  12. <dt><?= _t('index.about.version') ?></dt>
  13. <dd><?= FRESHRSS_VERSION ?></dd>
  14. <?php endif; ?>
  15. </dl>
  16. <p><?= _t('index.about.freshrss_description') ?></p>
  17. <h1><?= _t('index.about.credits') ?></h1>
  18. <p><?= _t('index.about.credits_content') ?></p>
  19. </div>