1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-01 18:32:44 +02:00

Bootstrap5 markup added to download item pagination. Fallback added to e107.css

This commit is contained in:
Cameron
2021-02-21 14:13:01 -08:00
parent e425349661
commit 340ff05fcd
4 changed files with 36 additions and 19 deletions

View File

@@ -506,18 +506,19 @@ $DOWNLOAD_TEMPLATE['view']['nextprev'] = "
*/
$DOWNLOAD_TEMPLATE['view']['nextprev'] = '
<ul class="pager download-view-nextprev">
<li class="previous">
<nav aria-label="Download Navigation">
<ul class="pagination justify-content-between download-view-nextprev">
<li class="page-item previous">
{DOWNLOAD_VIEW_PREV}
</li>
<li>
<li class="page-item text-center">
{DOWNLOAD_BACK_TO_LIST}
</li>
<li class="next">
<li class="page-item next">
{DOWNLOAD_VIEW_NEXT}
</li>
</ul>
</nav>
';
// ##### ------------------------------------------------------------------------------------------