diff --git a/app/views/public/api/v1/portals/_uncategorized-block.html.erb b/app/views/public/api/v1/portals/_uncategorized-block.html.erb index df3605122..0a86e1931 100644 --- a/app/views/public/api/v1/portals/_uncategorized-block.html.erb +++ b/app/views/public/api/v1/portals/_uncategorized-block.html.erb @@ -1,35 +1,27 @@
-
-

- <%= I18n.t('public_portal.header.uncategorized') %> -

- - <%= render 'public/api/v1/portals/article_count', article_count: portal.articles.published.where(category_id: nil).size %> - +
+
+

+ <%= I18n.t('public_portal.header.uncategorized') %> +

+
+
+ <% portal.articles.published.where(category_id: nil).order(position: :asc).take(5).each do |article| %> + +
+ <%= article.title %> + + <%= render partial: 'icons/chevron-right' %> + +
+
+ <% end %> +
+
+ <%= render 'public/api/v1/portals/article_count', article_count: portal.articles.published.where(category_id: nil).size %> +
-
- <% portal.articles.published.where(category_id: nil).order(position: :asc).take(5).each do |article| %> - -
- <%= article.title %> - - - - - -
-
- <% end %> -