diff options
| author | 2021-12-03 00:57:32 +0100 | |
|---|---|---|
| committer | 2021-12-03 00:57:32 +0100 | |
| commit | a54aa19dc7f8cd344cdfb199ee94c01e0b90becc (patch) | |
| tree | bcbfa7efbefaa459accf71dafc02f210e965bc28 /app/views/update | |
| parent | 00dbde68fbaf7da68ccf191c33f2de88d3603aa8 (diff) | |
Fix: double main tags (#4014)
* replace div with main
* include the slider into main
* format source
* add close icon for the extension slider
* replace div with main
* Update shortcut.phtml
* fixed the nits
Diffstat (limited to 'app/views/update')
| -rw-r--r-- | app/views/update/apply.phtml | 4 | ||||
| -rw-r--r-- | app/views/update/checkInstall.phtml | 4 | ||||
| -rw-r--r-- | app/views/update/index.phtml | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/app/views/update/apply.phtml b/app/views/update/apply.phtml index b52a31c5b..b96b3f07f 100644 --- a/app/views/update/apply.phtml +++ b/app/views/update/apply.phtml @@ -1,6 +1,6 @@ <?php $this->partial('aside_configure'); ?> -<div class="post"> +<main class="post"> <div class="link-back-wrapper"> <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> </div> @@ -8,4 +8,4 @@ <h1><?= _t('admin.update') ?></h1> <?php ask_info_update(); ?> -</div> +</main> diff --git a/app/views/update/checkInstall.phtml b/app/views/update/checkInstall.phtml index 8bca4cace..0e324de4a 100644 --- a/app/views/update/checkInstall.phtml +++ b/app/views/update/checkInstall.phtml @@ -1,6 +1,6 @@ <?php $this->partial('aside_configure'); ?> -<div class="post"> +<main class="post"> <div class="link-back-wrapper"> <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> </div> @@ -38,4 +38,4 @@ <?php } ?> */ ?> -</div> +</main> diff --git a/app/views/update/index.phtml b/app/views/update/index.phtml index 1d5c2f5cb..359e35bea 100644 --- a/app/views/update/index.phtml +++ b/app/views/update/index.phtml @@ -1,6 +1,6 @@ <?php $this->partial('aside_configure'); ?> -<div class="post"> +<main class="post"> <div class="link-back-wrapper"> <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> </div> @@ -47,4 +47,4 @@ <?php if ($this->update_to_apply) { ?> <a class="btn btn-important" href="<?= _url('update', 'apply') ?>"><?= _t('admin.update.apply') ?></a> <?php } ?> -</div> +</main> |
