diff options
Diffstat (limited to 'app/views/index/about.phtml')
| -rw-r--r-- | app/views/index/about.phtml | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/app/views/index/about.phtml b/app/views/index/about.phtml index 699191b6e..fedf6ff0b 100644 --- a/app/views/index/about.phtml +++ b/app/views/index/about.phtml @@ -10,25 +10,22 @@ <?php } ?> <h1><?= _t('index.about') ?></h1> + <p><?= _t('index.about.freshrss_description') ?></p> - <dl class="infos"> - <dt><?= _t('index.about.project_website') ?></dt> - <dd><a href="<?= FRESHRSS_WEBSITE ?>"><?= FRESHRSS_WEBSITE ?></a></dd> - - <dt><?= _t('index.about.bugs_reports') ?></dt> - <dd><?= _t('index.about.github') ?></dd> + <h2><?= _t('index.about.project_website') ?></h2> + <a href="<?= FRESHRSS_WEBSITE ?>"><?= FRESHRSS_WEBSITE ?></a> - <dt><?= _t('index.about.license') ?></dt> - <dd><?= _t('index.about.agpl3') ?></dd> + <h2><?= _t('index.about.bugs_reports') ?></h2> + <?= _t('index.about.github') ?> - <?php if (FreshRSS_Auth::hasAccess()): ?> - <dt><?= _t('index.about.version') ?></dt> - <dd><?= FRESHRSS_VERSION ?></dd> - <?php endif; ?> - </dl> + <h2><?= _t('index.about.license') ?></h2> + <?= _t('index.about.agpl3') ?> - <p><?= _t('index.about.freshrss_description') ?></p> + <?php if (FreshRSS_Auth::hasAccess()): ?> + <h2><?= _t('index.about.version') ?></h2> + <?= FRESHRSS_VERSION ?> + <?php endif; ?> - <h1><?= _t('index.about.credits') ?></h1> + <h2><?= _t('index.about.credits') ?></h2> <p><?= _t('index.about.credits_content') ?></p> </div> |
