From 10f875d804a098d3c08e3f872bcdb24289997ae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20V=C3=B6lkl?= Date: Tue, 25 Jul 2023 11:34:22 +0200 Subject: [PATCH] variables --- content/master.blade.php | 25 ++++++++++++ variables.json | 87 ++++++++++++++++++++++++++++++++++------ 2 files changed, 99 insertions(+), 13 deletions(-) diff --git a/content/master.blade.php b/content/master.blade.php index 5dd25f3..bf72a8e 100644 --- a/content/master.blade.php +++ b/content/master.blade.php @@ -10,6 +10,31 @@ @yield('head') + + + + @yield('content') diff --git a/variables.json b/variables.json index 3dbf379..3dd0a8b 100644 --- a/variables.json +++ b/variables.json @@ -1,19 +1,80 @@ [ { - "name": "Type", - "value": "Place", - "type": "string", - "required": true + "icon": "/font-awesome/light/suitcase.svg", + "group_name": "Design", + "description": "word word word word", + "variables": [ + { + "name": "Primary CI Color", + "type": "color", + "value" : "#1862A8" + }, + { + "name": "Secondary CI Color", + "type": "color" + }, + + { + "name": "Primary Background Color", + "type": "color", + "value": "#ffffff" + }, + { + "name": "Secondary Background Color", + "type": "color" + }, + + { + "name": "Primary Link Color", + "type": "color", + "value" : "#1862A8" + + }, + { + "name": "Secondary Link Color", + "type": "color", + "value" : "#1862A8" + + }, + + { + "name": "Title Color", + "type": "color", + "value" : "#1862A8", + "description": "Farbe für Überschriften" + + }, + { + "name": "Schriftart", + "type": "string", + "value" : "Times New Roman" + } + ] }, + { - "name": "Location Field", - "value": "Address", - "type": "string", - "required": true - }, - { - "name": "Filter Fields", - "type": "array", - "required": true + "icon": "/font-awesome/light/map-pin.svg", + "group_name": "Maps Config", + "description": "Einstellungen für die Karte", + "variables": [ + { + "name": "Type", + "value": "Place", + "type": "string", + "required": true + }, + { + "name": "Location Field", + "value": "Address", + "type": "string", + "required": true + }, + { + "name": "Filter Fields", + "type": "array", + "required": true + } + ] } + ] \ No newline at end of file