diff --git a/assets/css/app.css b/assets/css/app.css index 1e8741f..cdfbf74 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -575,13 +575,11 @@ nav .active a { /* item preview full-content */ .preview-full-content { overflow: auto; - margin-bottom: 10px; color: #666; } -.preview-full-content p { +.preview-full-content p, p.preview:not(:empty) { margin-top: 15px; - margin-bottom: 15px; } .preview-full-content img { diff --git a/locales/ar_AR/translations.php b/locales/ar_AR/translations.php index fa241f1..31cca13 100644 --- a/locales/ar_AR/translations.php +++ b/locales/ar_AR/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/cs_CZ/translations.php b/locales/cs_CZ/translations.php index b61a76a..709dbe9 100644 --- a/locales/cs_CZ/translations.php +++ b/locales/cs_CZ/translations.php @@ -241,4 +241,5 @@ return array( 'add a new group' => 'přidat novou skupinu', 'Groups' => 'Skupiny', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/de_DE/translations.php b/locales/de_DE/translations.php index fba98b5..b3b1b06 100644 --- a/locales/de_DE/translations.php +++ b/locales/de_DE/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/es_ES/translations.php b/locales/es_ES/translations.php index 944dc74..b707260 100644 --- a/locales/es_ES/translations.php +++ b/locales/es_ES/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/fr_FR/translations.php b/locales/fr_FR/translations.php index 1c039fb..472871e 100644 --- a/locales/fr_FR/translations.php +++ b/locales/fr_FR/translations.php @@ -241,4 +241,5 @@ return array( 'add a new group' => 'ajouter un nouveau libellé', 'Groups' => 'Libellés', 'Back to the group' => 'Revenir sur le groupe' + 'view' => 'view', ); diff --git a/locales/it_IT/translations.php b/locales/it_IT/translations.php index ab4b5ac..da05b1c 100644 --- a/locales/it_IT/translations.php +++ b/locales/it_IT/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/pt_BR/translations.php b/locales/pt_BR/translations.php index 10c68b5..41337f5 100644 --- a/locales/pt_BR/translations.php +++ b/locales/pt_BR/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/ru_RU/translations.php b/locales/ru_RU/translations.php index 688196d..808d1de 100644 --- a/locales/ru_RU/translations.php +++ b/locales/ru_RU/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/sr_RS/translations.php b/locales/sr_RS/translations.php index 7659774..e9752b5 100644 --- a/locales/sr_RS/translations.php +++ b/locales/sr_RS/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/sr_RS@latin/translations.php b/locales/sr_RS@latin/translations.php index 04773c1..945b0de 100644 --- a/locales/sr_RS@latin/translations.php +++ b/locales/sr_RS@latin/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/locales/zh_CN/translations.php b/locales/zh_CN/translations.php index 2ab0986..7af0125 100644 --- a/locales/zh_CN/translations.php +++ b/locales/zh_CN/translations.php @@ -241,4 +241,5 @@ return array( // 'add a new group' => '', // 'Groups' => '', // 'Back to the group' => '', + // 'view' => '', ); diff --git a/models/item.php b/models/item.php index 1baabc7..5ab8736 100644 --- a/models/item.php +++ b/models/item.php @@ -106,6 +106,7 @@ function get_all_by_status($status, $feed_ids = array(), $offset = null, $limit 'items.status', 'items.content', 'items.language', + 'items.author', 'feeds.site_url', 'feeds.title AS feed_title', 'feeds.rtl' @@ -156,6 +157,7 @@ function get_bookmarks($offset = null, $limit = null) 'items.content', 'items.feed_id', 'items.language', + 'items.author', 'feeds.site_url', 'feeds.title AS feed_title', 'feeds.rtl' @@ -196,6 +198,7 @@ function get_all_by_feed($feed_id, $offset = null, $limit = null, $order_column 'items.content', 'items.bookmark', 'items.language', + 'items.author', 'feeds.site_url', 'feeds.rtl' ) diff --git a/templates/item.php b/templates/item.php index b68e878..3d39a6c 100644 --- a/templates/item.php +++ b/templates/item.php @@ -10,21 +10,20 @@ - + + + > + + + - -
> - -
- -

> - -

- + +
> + +
+ +

>

+ diff --git a/templates/show_item.php b/templates/show_item.php index ba1c7c0..4b55adb 100644 --- a/templates/show_item.php +++ b/templates/show_item.php @@ -46,6 +46,11 @@
  • + +
  • + +
  • +