diff options
| author | 2021-07-24 19:13:39 +0200 | |
|---|---|---|
| committer | 2021-07-24 19:13:39 +0200 | |
| commit | fe59d02066fc7a64e91ffbf13575b885c16022c0 (patch) | |
| tree | 7d4a6a447b70c974ef49858a7b6f48ee1477c7c6 /app/install.php | |
| parent | 6bf755dd41e9deeaa3326c9fb80f5d4aa0b1a87c (diff) | |
install routine: template to html5 (#3713)
Diffstat (limited to 'app/install.php')
| -rw-r--r-- | app/install.php | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/app/install.php b/app/install.php index 5a4f3359a..013b40d09 100644 --- a/app/install.php +++ b/app/install.php @@ -662,22 +662,24 @@ if (_t('gen.dir') === 'rtl') { </head> <body> -<div class="header"> +<header class="header"> <div class="item title"> <h1><a href="index.php"><?= _t('install.title') ?></a></h1> <h2><?= _t('install.step', STEP) ?></h2> </div> -</div> - -<div id="global"> - <ul class="nav nav-list aside"> - <li class="nav-header"><?= _t('install.steps') ?></li> - <li class="item<?= STEP == 0 ? ' active' : '' ?>"><a href="?step=0"><?= _t('install.language') ?></a></li> - <li class="item<?= STEP == 1 ? ' active' : '' ?>"><a href="?step=1"><?= _t('install.check') ?></a></li> - <li class="item<?= STEP == 2 ? ' active' : '' ?>"><a href="?step=2"><?= _t('install.bdd.conf') ?></a></li> - <li class="item<?= STEP == 3 ? ' active' : '' ?>"><a href="?step=3"><?= _t('install.conf') ?></a></li> - <li class="item<?= STEP == 4 ? ' active' : '' ?>"><a href="?step=4"><?= _t('install.this_is_the_end') ?></a></li> - </ul> +</header> + +<main id="global"> + <nav class="nav nav-list aside"> + <ul> + <li class="nav-header"><?= _t('install.steps') ?></li> + <li class="item<?= STEP == 0 ? ' active' : '' ?>"><a href="?step=0"><?= _t('install.language') ?></a></li> + <li class="item<?= STEP == 1 ? ' active' : '' ?>"><a href="?step=1"><?= _t('install.check') ?></a></li> + <li class="item<?= STEP == 2 ? ' active' : '' ?>"><a href="?step=2"><?= _t('install.bdd.conf') ?></a></li> + <li class="item<?= STEP == 3 ? ' active' : '' ?>"><a href="?step=3"><?= _t('install.conf') ?></a></li> + <li class="item<?= STEP == 4 ? ' active' : '' ?>"><a href="?step=4"><?= _t('install.this_is_the_end') ?></a></li> + </ul> + </nav> <div class="post"> <?php @@ -704,7 +706,7 @@ if (_t('gen.dir') === 'rtl') { } ?> </div> -</div> +</main> <script src="../scripts/install.js?<?= @filemtime(PUBLIC_PATH . '/scripts/install.js') ?>"></script> </body> </html> |
