This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
generated from shgysk8zer0/jekyll-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json.config
27 lines (27 loc) · 1.74 KB
/
manifest.json.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: null
permalink: manifest.json
---
{
"version": "{{ site.data.app.version | default: site.version }}",
"name": "{{ site.data.app.name | default: site.title }}",
"short_name": "{{ site.data.app.shortName | default: site.title}}",
"description": "{{ site.data.app.description | default: site.description }}",
"start_url": "{{ page.url | replace: 'manifest.json' }}",
"lang": "{{ site.data.app.lang | default: site.lang }}",
"dir": "{{ site.app.data.dir | default: 'ltr' }}",
"orientation": "{{ site.app.data.orientation | default: 'any' }}",
"display": "{{ site.data.app.display | default: 'standalone' }}",
"theme_color": "{{ site.data.app.theme.color | default: '#007bff' }}",
"background_color": "{{ site.data.app.theme.background | default: '#FEFEFE' }}",
"icons": {{ site.data.app.icons | where_exp: "icon", "icon.purpose" | jsonify }},
"screenshots": {{ site.data.app.screenshots | jsonify }},
{% if site.data.app.features %}"features": {{ site.data.app.features | jsonify }},{% endif %}
{% if site.data.app.iarc_rating_id %}"iarc_rating_id": {{ site.data.app.iarc_rating_id | jsonify }},{% endif %}
"prefer_related_applications": {% if site.data.app.prefer_related_applications == true %}true{% else %}false{%endif %},
{% if site.data.app.related_applications %}"related_applications": {{ site.data.app.related_applications | jsonify }},{% endif %}
{% if site.data.app.shortcuts %}"shortcuts": {{ site.data.app.shortcuts | jsonify }},{% endif %}
{% if site.data.app.share_target %}"share_target": {{ site.data.app.share_target | jsonify }},{% endif %}
{% if site.data.app.file_handlers %}"file_handlers": {{ site.data.app.file_handlers | jsonify }},{% endif %}
"categories": {{ site.data.app.categories | jsonify | default: '["lifestyle"]' }}
}