variables
parent
deb2b60a0a
commit
10f875d804
|
@ -10,6 +10,31 @@
|
||||||
<script src="{{asset('template/libs/jquery-3.6.0.min.js')}}"></script>
|
<script src="{{asset('template/libs/jquery-3.6.0.min.js')}}"></script>
|
||||||
<script src="{{asset('template/libs/bootstrap-5.2.0/bootstrap.bundle.min.js')}}"></script>
|
<script src="{{asset('template/libs/bootstrap-5.2.0/bootstrap.bundle.min.js')}}"></script>
|
||||||
@yield('head')
|
@yield('head')
|
||||||
|
<style>
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: {{$_primary_background_color}};
|
||||||
|
font-family: {{$_schriftart}};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
h1,h2{color: {{$_title_color}}}
|
||||||
|
.card{
|
||||||
|
background-color: {{$_secondary_background_color}}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.bg-primary{ background-color: {{$_primary_ci_color}} !important;}
|
||||||
|
|
||||||
|
a, a:hover, a:active {color:{{$_primary_link_color}} };
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@yield('content')
|
@yield('content')
|
||||||
|
|
|
@ -1,19 +1,80 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"name": "Type",
|
"icon": "/font-awesome/light/suitcase.svg",
|
||||||
"value": "Place",
|
"group_name": "Design",
|
||||||
"type": "string",
|
"description": "word word word word",
|
||||||
"required": true
|
"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",
|
"icon": "/font-awesome/light/map-pin.svg",
|
||||||
"value": "Address",
|
"group_name": "Maps Config",
|
||||||
"type": "string",
|
"description": "Einstellungen für die Karte",
|
||||||
"required": true
|
"variables": [
|
||||||
},
|
{
|
||||||
{
|
"name": "Type",
|
||||||
"name": "Filter Fields",
|
"value": "Place",
|
||||||
"type": "array",
|
"type": "string",
|
||||||
"required": true
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Location Field",
|
||||||
|
"value": "Address",
|
||||||
|
"type": "string",
|
||||||
|
"required": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Filter Fields",
|
||||||
|
"type": "array",
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
Loading…
Reference in New Issue