New class to differentiate post title & tags
This commit is contained in:
parent
2fb947eb21
commit
f0755b7c7e
1 changed files with 3 additions and 3 deletions
|
@ -3367,14 +3367,14 @@
|
||||||
$rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
|
$rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
|
||||||
|
|
||||||
if ($line["link"]) {
|
if ($line["link"]) {
|
||||||
$rv['content'] .= "<div clear='both'><a target='_blank'
|
$rv['content'] .= "<div class='postTitle' clear='both'><a target='_blank'
|
||||||
title=\"".htmlspecialchars($line['title'])."\"
|
title=\"".htmlspecialchars($line['title'])."\"
|
||||||
href=\"" .
|
href=\"" .
|
||||||
$line["link"] . "\">" .
|
$line["link"] . "\">" .
|
||||||
truncate_string($line["title"], 100) .
|
truncate_string($line["title"], 100) .
|
||||||
"<span class='author'>$entry_author</span></a></div>";
|
"<span class='author'>$entry_author</span></a></div>";
|
||||||
} else {
|
} else {
|
||||||
$rv['content'] .= "<div clear='both'>" . $line["title"] . "$entry_author</div>";
|
$rv['content'] .= "<div class='postTitle' clear='both'>" . $line["title"] . "$entry_author</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
$tag_cache = $line["tag_cache"];
|
$tag_cache = $line["tag_cache"];
|
||||||
|
@ -3391,7 +3391,7 @@
|
||||||
|
|
||||||
if (!$entry_comments) $entry_comments = " "; # placeholder
|
if (!$entry_comments) $entry_comments = " "; # placeholder
|
||||||
|
|
||||||
$rv['content'] .= "<div style='float : right'>
|
$rv['content'] .= "<div class='postTags' style='float : right'>
|
||||||
<img src='".theme_image($link, 'images/tag.png')."'
|
<img src='".theme_image($link, 'images/tag.png')."'
|
||||||
class='tagsPic' alt='Tags' title='Tags'> ";
|
class='tagsPic' alt='Tags' title='Tags'> ";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue