about.phtml 993 B

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