diff options
author | ashleyhull-versent <ashley.hull@versent.com.au> | 2018-10-08 09:20:45 +1100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-08 00:20:45 +0200 |
commit | 2dba313100e2a5077df3ff4b00d12f9ed9f0bd72 (patch) | |
tree | 9af855e8d94c405ef575d146b552b436da03f1e7 /app/views/about | |
parent | 774ac473736cbf348827cf6d861e7fbbb72d7623 (diff) |
Replace SVG asset with Custom mascot (#8766)
Diffstat (limited to 'app/views/about')
-rw-r--r-- | app/views/about/more.html.haml | 2 | ||||
-rw-r--r-- | app/views/about/show.html.haml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/about/more.html.haml b/app/views/about/more.html.haml index ac7010986..f94c7c06f 100644 --- a/app/views/about/more.html.haml +++ b/app/views/about/more.html.haml @@ -25,7 +25,7 @@ %span= t 'about.status_count_after', count: @instance_presenter.status_count .row__mascot .landing-page__mascot - = image_tag asset_pack_path('elephant_ui_plane.svg'), alt: '' + = image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('elephant_ui_plane.svg'), alt: '' .column-2 .landing-page__information.contact-widget diff --git a/app/views/about/show.html.haml b/app/views/about/show.html.haml index 8c7baa054..f5a78665d 100644 --- a/app/views/about/show.html.haml +++ b/app/views/about/show.html.haml @@ -63,7 +63,7 @@ %span= t 'about.status_count_after', count: @instance_presenter.status_count .row__mascot .landing-page__mascot - = image_tag asset_pack_path('elephant_ui_plane.svg'), alt: '' + = image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('elephant_ui_plane.svg'), alt: '' - else .column-2.non-preview @@ -95,7 +95,7 @@ %span= t 'about.status_count_after', count: @instance_presenter.status_count .row__mascot .landing-page__mascot - = image_tag asset_pack_path('elephant_ui_plane.svg'), alt: '' + = image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('elephant_ui_plane.svg'), alt: '' - if Setting.timeline_preview .column-3 |