diff options
| author | 2021-09-18 12:52:17 +0200 | |
|---|---|---|
| committer | 2021-09-18 12:52:17 +0200 | |
| commit | dfc89831d4e363f62dea9df71c6b4af21cc7d7c7 (patch) | |
| tree | 8625284d5de6d6f9868307af361af4aff103c55f /app/views/helpers | |
| parent | 4300130658e64aef69488086237f36bfddc33d4c (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/helpers')
| -rw-r--r-- | app/views/helpers/category/update.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/configure/query.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/extension/configure.phtml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/app/views/helpers/category/update.phtml b/app/views/helpers/category/update.phtml index 022d5e8e3..a2ab7a938 100644 --- a/app/views/helpers/category/update.phtml +++ b/app/views/helpers/category/update.phtml @@ -1,5 +1,5 @@ <div class="post"> - <h1><?= $this->category->name() ?></h1> + <h2><?= $this->category->name() ?></h2> <div> <a href="<?= _url('index', 'index', 'get', 'c_' . $this->category->id()) ?>"><?= _i('link') ?> <?= _t('gen.action.filter') ?></a> diff --git a/app/views/helpers/configure/query.phtml b/app/views/helpers/configure/query.phtml index 38a1a715c..a9bf4478d 100644 --- a/app/views/helpers/configure/query.phtml +++ b/app/views/helpers/configure/query.phtml @@ -1,5 +1,5 @@ <div class="post"> - <h1><?= $this->query->getName() ?></h1> + <h2><?= $this->query->getName() ?></h2> <div> <a href="<?= $this->query->getUrl() ?>"><?= _i('link') ?> <?= _t('gen.action.filter') ?></a> diff --git a/app/views/helpers/extension/configure.phtml b/app/views/helpers/extension/configure.phtml index 4a6dfe357..4f8c521ae 100644 --- a/app/views/helpers/extension/configure.phtml +++ b/app/views/helpers/extension/configure.phtml @@ -1,8 +1,8 @@ <div class="post"> - <h1> + <h2> <?= $this->extension->getName() ?> (<?= $this->extension->getVersion() ?>) — <?= $this->extension->isEnabled() ? _t('admin.extensions.enabled') : _t('admin.extensions.disabled') ?> - </h1> + </h2> <p class="alert alert-warn"><?= $this->extension->getDescription() ?> — <?= _t('gen.short.by_author'), ' ', $this->extension->getAuthor() ?></p> |
