diff options
Diffstat (limited to 'template/standard/html/user')
-rw-r--r-- | template/standard/html/user/item.php | 4 | ||||
-rw-r--r-- | template/standard/html/user/list.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php index 04abc0f..45106af 100644 --- a/template/standard/html/user/item.php +++ b/template/standard/html/user/item.php @@ -7,7 +7,7 @@ # # #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# ?> -<li class="item-list-li user"> +<article class="item"> <header> <h2> <a title="<?=$Language->text('select_user')?>: »<?=escapeHTML($USER['ATTR']['FULLNAME'])?>«" href="<?=$USER['URL']?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> @@ -17,4 +17,4 @@ <blockquote cite="<?=$USER['URL']?>"> <?=$USER['BODY']['HTML']()?> </blockquote> -</li>
\ No newline at end of file +</article>
\ No newline at end of file diff --git a/template/standard/html/user/list.php b/template/standard/html/user/list.php index d95bd0c..ebc231d 100644 --- a/template/standard/html/user/list.php +++ b/template/standard/html/user/list.php @@ -10,10 +10,10 @@ <h1><i class="fa fa-user"></i><?=$Language->text('user_overview')?></h1> <p><?=$Language->text('user_overview_heading_desc', $PAGINATION['THIS'])?></p> -<ul class="item-list user"> +<div class="item-container user"> <?php foreach($LIST['USERS'] as $user): ?> <?php echo $user; ?> <?php endforeach; ?> -</ul> +</div> <?=$PAGINATION['HTML']?>
\ No newline at end of file |