mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 01:31:29 +00:00
rework article view header
This commit is contained in:
20
backend.php
20
backend.php
@@ -719,10 +719,10 @@
|
|||||||
} else {
|
} else {
|
||||||
$comments_url = $line["link"];
|
$comments_url = $line["link"];
|
||||||
}
|
}
|
||||||
$entry_comments = "(<a href=\"$comments_url\">$num_comments comments</a>)";
|
$entry_comments = "<a href=\"$comments_url\">$num_comments comments</a>";
|
||||||
} else {
|
} else {
|
||||||
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
if ($line["comments"] && $line["link"] != $line["comments"]) {
|
||||||
$entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
|
$entry_comments = "<a href=\"".$line["comments"]."\">Comments</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -730,7 +730,7 @@
|
|||||||
|
|
||||||
print "<div class=\"postHeader\"><table width=\"100%\">";
|
print "<div class=\"postHeader\"><table width=\"100%\">";
|
||||||
|
|
||||||
print "<tr><td>" . $line["title"] . "</td>";
|
print "<tr><td><a href=\"" . $line["link"] . "\">" . $line["title"] . "</a></td>";
|
||||||
|
|
||||||
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
||||||
strtotime($line["updated"]));
|
strtotime($line["updated"]));
|
||||||
@@ -764,15 +764,13 @@
|
|||||||
$tags_str = preg_replace("/, $/", "", $tags_str);
|
$tags_str = preg_replace("/, $/", "", $tags_str);
|
||||||
$f_tags_str = preg_replace("/, $/", "", $f_tags_str);
|
$f_tags_str = preg_replace("/, $/", "", $f_tags_str);
|
||||||
|
|
||||||
print "<tr><td width='50%'>
|
// $truncated_link = truncate_string($line["link"], 60);
|
||||||
<a href=\"" . $line["link"] . "\">".$line["link"]."</a>
|
|
||||||
$entry_comments</td>
|
|
||||||
<td align=\"right\">$tags_str</td></tr>";
|
|
||||||
|
|
||||||
/* if ($tags_str) {
|
if ($tags_str || $entry_comments) {
|
||||||
print "<tr><td><b>Tags:</b></td>
|
print "<tr><td width='50%'>
|
||||||
<td width='100%'>$tags_str</td></tr>";
|
$entry_comments</td>
|
||||||
} */
|
<td align=\"right\">$tags_str</td></tr>";
|
||||||
|
}
|
||||||
|
|
||||||
print "</table></div>";
|
print "</table></div>";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user