mirror of
https://github.com/danpros/htmly.git
synced 2026-04-21 21:16:23 +05:30
Update user-draft.html.php
This commit is contained in:
parent
61a75ee945
commit
925e2d6d0e
1 changed files with 11 additions and 1 deletions
|
|
@ -28,6 +28,16 @@
|
|||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
|
||||
<div class="pager">
|
||||
<?php if (!empty($pagination['prev'])): ?>
|
||||
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev">Newer</a></span>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($pagination['next'])): ?>
|
||||
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next">Older</a></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php } else {
|
||||
echo i18n('No_draft_found') . '!';
|
||||
} ?>
|
||||
} ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue