mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
display entry author if any
This commit is contained in:
@@ -45,6 +45,7 @@ toolbar.about=About
|
|||||||
toolbar.logout=Logout
|
toolbar.logout=Logout
|
||||||
toolbar.donate=Donate
|
toolbar.donate=Donate
|
||||||
|
|
||||||
|
view.entry_author=by
|
||||||
view.error_while_loading_feed=Error while loading this feed
|
view.error_while_loading_feed=Error while loading this feed
|
||||||
view.keep_unread=Keep unread
|
view.keep_unread=Keep unread
|
||||||
view.no_unread_items=has no unread items.
|
view.no_unread_items=has no unread items.
|
||||||
|
|||||||
@@ -95,6 +95,12 @@
|
|||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#feed-accordion .entry-body .entry-author {
|
||||||
|
display: block;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
#feed-accordion .entry-body img {
|
#feed-accordion .entry-body img {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,8 +35,13 @@
|
|||||||
<div class="entry-header">
|
<div class="entry-header">
|
||||||
<h4 class="entry-title">
|
<h4 class="entry-title">
|
||||||
<a href="{{entry.url}}" target="_blank" ng-bind-html-unsafe="entry.title"></a>
|
<a href="{{entry.url}}" target="_blank" ng-bind-html-unsafe="entry.title"></a>
|
||||||
|
<span class="entry-author" ui-if="entry.author">
|
||||||
|
<span class="entry-author-prefix">${view.entry_author}</span>
|
||||||
|
<span class="entry-author-name">{{entry.author}}</span>
|
||||||
|
</span>
|
||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="entry-body-content">
|
<div class="entry-body-content">
|
||||||
<div ng-bind-html-unsafe="entry.content"></div>
|
<div ng-bind-html-unsafe="entry.content"></div>
|
||||||
<video controls ui-if="entry.enclosureType && entry.enclosureType.indexOf('video') == 0">
|
<video controls ui-if="entry.enclosureType && entry.enclosureType.indexOf('video') == 0">
|
||||||
|
|||||||
Reference in New Issue
Block a user