about.phtml 941 B

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