diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-02 16:16:56 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-02 16:16:56 +0200 |
commit | a2556505e5f2d528a6c93958a8c7c9beaf4e002a (patch) | |
tree | 2d42735d4f057f70d407ec5cfbc96f0999070f4f /template/standard/html/user | |
parent | da10bf19cf78b71b62ecac1c32a83be2478104af (diff) | |
download | blog-a2556505e5f2d528a6c93958a8c7c9beaf4e002a.tar.gz blog-a2556505e5f2d528a6c93958a8c7c9beaf4e002a.tar.xz blog-a2556505e5f2d528a6c93958a8c7c9beaf4e002a.zip |
Some HTML and CSS optimizations has been made to the standard template and the "title" attribute was added to every heading link in the item list.
Diffstat (limited to 'template/standard/html/user')
-rw-r--r-- | template/standard/html/user/item.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php index 3a33c51..04abc0f 100644 --- a/template/standard/html/user/item.php +++ b/template/standard/html/user/item.php @@ -10,9 +10,9 @@ <li class="item-list-li user"> <header> <h2> - <a href="<?=$USER['URL']?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> - <span class="info brackets"><?=escapeHTML($USER['ATTR']['USERNAME'])?></span> + <a title="<?=$Language->text('select_user')?>: »<?=escapeHTML($USER['ATTR']['FULLNAME'])?>«" href="<?=$USER['URL']?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> </h2> + <span class="brackets info"><?=escapeHTML($USER['ATTR']['USERNAME'])?></span> </header> <blockquote cite="<?=$USER['URL']?>"> <?=$USER['BODY']['HTML']()?> |