diff options
| author | 2021-07-21 22:42:04 +0200 | |
|---|---|---|
| committer | 2021-07-21 22:42:04 +0200 | |
| commit | ab0285b0aa05574ae864bef590ffd6ea36f0c50a (patch) | |
| tree | 88292a7ba37615a07ebde443d8c69cc75144978d /app/layout/nav_entries.phtml | |
| parent | 3c945bee7bc1853ea4bf38b1b04259a465bf08d2 (diff) | |
Add HTML5 tags (#3651)
* use HTML5 tags #3643
added some HTML5 tags: header, main, nav
* <main> into <div>
as dicussed in the PR.
Todo: check side effects (f.e. threepaneview extension)
* fixed whitespace with tabs
* fixed more whitespaces with tabs
it was not my fault, but I fixed it
* added empty lines as wished
* Update app/views/index/global.phtml
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
* Update app/views/index/global.phtml
* Update app/views/index/global.phtml
* Update app/views/index/global.phtml
* Update app/views/index/global.phtml
* Update app/views/index/global.phtml
* Update app/views/index/global.phtml
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
Diffstat (limited to 'app/layout/nav_entries.phtml')
| -rw-r--r-- | app/layout/nav_entries.phtml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/app/layout/nav_entries.phtml b/app/layout/nav_entries.phtml index cbc514737..55e1743dc 100644 --- a/app/layout/nav_entries.phtml +++ b/app/layout/nav_entries.phtml @@ -1,5 +1,7 @@ -<ul id="nav_entries"> - <li class="item"><a class="previous_entry" href="#"><?= _i('prev') ?></a></li> - <li class="item"><a class="up" href="#"><?= _i('up') ?></a></li> - <li class="item"><a class="next_entry" href="#"><?= _i('next') ?></a></li> -</ul>
\ No newline at end of file +<nav> + <ul id="nav_entries"> + <li class="item"><a class="previous_entry" href="#"><?= _i('prev') ?></a></li> + <li class="item"><a class="up" href="#"><?= _i('up') ?></a></li> + <li class="item"><a class="next_entry" href="#"><?= _i('next') ?></a></li> + </ul> +</nav> |
