moved javascript to global file, added js minifier and html formatter

This commit is contained in:
2025-07-05 00:54:17 +02:00
parent 9b7c3dc697
commit 3f427dfa32
10 changed files with 462 additions and 351 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "{{ name }}",
"short_name": "{{ short_name }}",
"description": "{{ name }} - A static web gallery - made with StaticGalleryBuilder (https://github.com/greflm13/StaticGalleryBuilder)",
"icons": [
{% for icon in icons -%}
{
"src": "{{ icon.src }}",
"sizes": "{{ icon.sizes }}",
"type": "{{ icon.type }}",
"purpose": "{{ icon.purpose }}"
}{% if not loop.last %},{% endif %}
{%- endfor %}
],
"id": "/",
"start_url": "/",
"background_color": "{{ background_color }}",
"display": "standalone",
"scope": "/",
"theme_color": "{{ theme_color }}"
}