4 use Friendica\Core\System;
5 use Friendica\Core\Config;
7 function manifest_content(App $a) {
9 $tpl = get_markup_template('manifest.tpl');
11 header('Content-type: application/manifest+json');
13 $touch_icon = Config::get('system', 'touch_icon', 'images/friendica-128.png');
14 if ($touch_icon == '') {
15 $touch_icon = 'images/friendica-128.png';
18 $o = replace_macros($tpl, array(
19 '$baseurl' => System::baseUrl(),
20 '$touch_icon' => $touch_icon,
21 '$title' => Config::get('config', 'sitename', 'Friendica'),