Added date to newsfeed
This commit is contained in:
@@ -52,9 +52,10 @@ if ($action == "newsfeed") {
|
||||
|
||||
$title = (string)$item->title;
|
||||
$link = (string)$item->link;
|
||||
$date = date("D, j. F Y, G:i", strtotime($item->pubDate));
|
||||
$content = preg_replace("/[\r\n]+/", "", strip_tags($item->description));
|
||||
|
||||
echo "<div class=\"newsitem\"><a href=\"" . $link . "\" target=\"_blank\"><b>" . $title . "</b><br />" . $content . "</a></div>";
|
||||
echo "<div class=\"newsitem\"><a href=\"" . $link . "\" target=\"_blank\"><b>" . $title . "</b><br /><small>" . $date . "</small><br />" . $content . "</a></div>";
|
||||
}
|
||||
} else {
|
||||
echo "";
|
||||
|
||||
6
templates/Sparkle/assets/css/main.css
vendored
6
templates/Sparkle/assets/css/main.css
vendored
@@ -953,7 +953,7 @@ label.nobr {
|
||||
.newsitem {
|
||||
border-bottom: 1px solid #f1f2f3;
|
||||
padding: 6px 5px 8px 5px;
|
||||
height: 36px;
|
||||
height: 56px;
|
||||
line-height: 20px;
|
||||
margin: 0 5px;
|
||||
overflow: hidden;
|
||||
@@ -972,3 +972,7 @@ label.nobr {
|
||||
.newsitem b {
|
||||
margin-right: 15px;
|
||||
}
|
||||
.newsitem small {
|
||||
font-size: 10px;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user