about.phtml 838 B

123456789101112131415161718192021222324
  1. <div class="post content">
  2. <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a>
  3. <h1><?php echo _t('index.about'); ?></h1>
  4. <dl class="infos">
  5. <dt><?php echo _t('index.about.project_website'); ?></dt>
  6. <dd><a href="<?php echo FRESHRSS_WEBSITE; ?>"><?php echo FRESHRSS_WEBSITE; ?></a></dd>
  7. <dt><?php echo _t('index.about.bugs_reports'); ?></dt>
  8. <dd><?php echo _t('index.about.github'); ?></dd>
  9. <dt><?php echo _t('index.about.license'); ?></dt>
  10. <dd><?php echo _t('index.about.agpl3'); ?></dd>
  11. <dt><?php echo _t('index.about.version'); ?></dt>
  12. <dd><?php echo FRESHRSS_VERSION; ?></dd>
  13. </dl>
  14. <p><?php echo _t('index.about.freshrss_description'); ?></p>
  15. <h1><?php echo _t('index.about.credits'); ?></h1>
  16. <p><?php echo _t('index.about.credits_content'); ?></p>
  17. </div>