aboutsummaryrefslogtreecommitdiff
path: root/app/views/index/about.phtml
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2021-09-18 12:52:17 +0200
committerGravatar GitHub <noreply@github.com> 2021-09-18 12:52:17 +0200
commitdfc89831d4e363f62dea9df71c6b4af21cc7d7c7 (patch)
tree8625284d5de6d6f9868307af361af4aff103c55f /app/views/index/about.phtml
parent4300130658e64aef69488086237f36bfddc33d4c (diff)
Headline structure improvement (Part 2) (#3851)
* Update about.phtml * Update queries.phtml * Update query.phtml * Update configure.phtml * Update profile.phtml * Update simple.phtml * update app\views\helpers\category\update.phtml
Diffstat (limited to 'app/views/index/about.phtml')
-rw-r--r--app/views/index/about.phtml27
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>