2022-03-08 20:30:46 +03:00
|
|
|
import Helper from '@ember/component/helper';
|
|
|
|
import {htmlSafe} from '@ember/template';
|
2022-11-03 14:14:36 +03:00
|
|
|
import {inject} from 'ghost-admin/decorators/inject';
|
2022-03-08 20:30:46 +03:00
|
|
|
|
|
|
|
export default class SiteIconStyleHelper extends Helper {
|
2022-11-03 14:14:36 +03:00
|
|
|
@inject config;
|
2022-03-08 20:30:46 +03:00
|
|
|
|
|
|
|
compute() {
|
2022-10-07 17:24:03 +03:00
|
|
|
const icon = this.config.icon || 'https://static.ghost.org/v4.0.0/images/ghost-orb-2.png';
|
2022-03-08 20:30:46 +03:00
|
|
|
return htmlSafe(`background-image: url(${icon})`);
|
|
|
|
}
|
2022-10-07 17:24:03 +03:00
|
|
|
}
|