about.phtml 895 B

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