about.phtml 840 B

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