about.phtml 921 B

12345678910111213141516171819202122232425262728293031
  1. <?php if (FreshRSS_Auth::hasAccess()) {?>
  2. <?php $this->partial('aside_configure'); ?>
  3. <?php } ?>
  4. <main 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. <p><?= _t('index.about.freshrss_description') ?></p>
  12. <h2><?= _t('index.about.project_website') ?></h2>
  13. <a href="<?= FRESHRSS_WEBSITE ?>"><?= FRESHRSS_WEBSITE ?></a>
  14. <h2><?= _t('index.about.bugs_reports') ?></h2>
  15. <?= _t('index.about.github') ?>
  16. <h2><?= _t('index.about.license') ?></h2>
  17. <?= _t('index.about.agpl3') ?>
  18. <?php if (FreshRSS_Auth::hasAccess()): ?>
  19. <h2><?= _t('index.about.version') ?></h2>
  20. <?= FRESHRSS_VERSION ?>
  21. <?php endif; ?>
  22. <h2><?= _t('index.about.credits') ?></h2>
  23. <p><?= _t('index.about.credits_content') ?></p>
  24. </main>