From b3c5bcd8a21338e79ec2a83e079bcfb81d1edc28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20V=C3=B6lkl?= Date: Mon, 15 May 2023 17:15:12 +0200 Subject: [PATCH] added first files --- .gitignore | 1 + config.json | 32 ++++++++++++++++++++++++++++++++ content_types.json | 26 ++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 config.json create mode 100644 content_types.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..226b509 --- /dev/null +++ b/config.json @@ -0,0 +1,32 @@ +{ + "name": "Map Template", + "description": "A Template for displaying Content on a Map", + "image": "https://ik.imagekit.io/areya/tr:ar-5-3,w-800/geojango-maps-Z8UgB80_46w-unsplash_SNswHMxBz.jpg", + "version": "0.1", + "author": { + "name": "Areya Webservices", + "link": "https://www.areya.de/" + }, + "lumino-version": {"min": "3.4", "max": "3.6"}, + + "content-types": [ + { + "name":"Locations", + "description":"Content to Display on a Map", + "icon":"map-pin", + "status":"1", + "fields": [ + + { + "name": "Description", + "type": "text", + "required": "1" + } + ] + } + + + + ] + +} \ No newline at end of file diff --git a/content_types.json b/content_types.json new file mode 100644 index 0000000..ce1e254 --- /dev/null +++ b/content_types.json @@ -0,0 +1,26 @@ +[ + { + "name":"Locations", + "description":"Content to Display on a Map", + "icon": "/font-awesome/duotone/map-pin.svg", + "status":1, + "blade": "undefined", + "fields": [ + + { + "name": "Description", + "type": "text", + "required": 1, + "position": 2 + }, + + { + "name": "Location", + "type": "location", + "position": 2, + "required": 1, + "default_value": "" + } + ] + } +] \ No newline at end of file