Updated themes
This commit is contained in:
parent
2cd0208141
commit
343e809bde
|
@ -0,0 +1,66 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Theme Config
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||||
|
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||||
|
|
|
||||||
|
| The settings below change how your buttons behave.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||||
|
// If 'false' the default button CSS is used.
|
||||||
|
'allow_custom_buttons' => 'false',
|
||||||
|
|
||||||
|
'open_links_in_same_tab' => 'false',
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Code
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||||
|
|
|
||||||
|
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||||
|
| different places on the final page (head, body, at the end of the body).
|
||||||
|
|
|
||||||
|
| You may also attach custom assets like CSS, JS, or images.
|
||||||
|
| You can find instructions for this in the files in your extra folder.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'enable_custom_code' => 'false',
|
||||||
|
|
||||||
|
// Disable individual files (only applies if above is 'true').
|
||||||
|
'enable_custom_head' => 'true',
|
||||||
|
'enable_custom_body' => 'true',
|
||||||
|
'enable_custom_body_end' => 'true',
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Icons
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| You may add custom icons to your theme.
|
||||||
|
| These icons are stored under: .../extra/custom-icons.
|
||||||
|
|
|
||||||
|
| You can adjust the file extension types to use other files than just SVGs.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use_custom_icons' => 'false',
|
||||||
|
|
||||||
|
// Is not set correct this will cause errors.
|
||||||
|
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
];
|
|
@ -2,7 +2,7 @@
|
||||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||||
|
|
||||||
* Theme Name: Galaxy
|
* Theme Name: Galaxy
|
||||||
* Theme Version: 1.6
|
* Theme Version: 1.7
|
||||||
* Theme Date: 2022-06-09
|
* Theme Date: 2022-06-09
|
||||||
* Theme Author: JulianPrieber
|
* Theme Author: JulianPrieber
|
||||||
* Theme Author URI: https://github.com/JulianPrieber
|
* Theme Author URI: https://github.com/JulianPrieber
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Theme Config
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The theme config allows you to configure how LittleLink Custom should treat your theme.
|
||||||
|
| All settings can either be set to "true" or "false", unless stated otherwise.
|
||||||
|
|
|
||||||
|
| The settings below change how your buttons behave.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Some themes may not be compatible with custom buttons created by the Button Editor.
|
||||||
|
// If 'false' the default button CSS is used.
|
||||||
|
'allow_custom_buttons' => 'false',
|
||||||
|
|
||||||
|
'open_links_in_same_tab' => 'false',
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Code
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
|
||||||
|
|
|
||||||
|
| In your "extra" folder, you will find 3 separate files for injecting your code to
|
||||||
|
| different places on the final page (head, body, at the end of the body).
|
||||||
|
|
|
||||||
|
| You may also attach custom assets like CSS, JS, or images.
|
||||||
|
| You can find instructions for this in the files in your extra folder.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'enable_custom_code' => 'false',
|
||||||
|
|
||||||
|
// Disable individual files (only applies if above is 'true').
|
||||||
|
'enable_custom_head' => 'true',
|
||||||
|
'enable_custom_body' => 'true',
|
||||||
|
'enable_custom_body_end' => 'true',
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Icons
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| You may add custom icons to your theme.
|
||||||
|
| These icons are stored under: .../extra/custom-icons.
|
||||||
|
|
|
||||||
|
| You can adjust the file extension types to use other files than just SVGs.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use_custom_icons' => 'false',
|
||||||
|
|
||||||
|
// Is not set correct this will cause errors.
|
||||||
|
'custom_icon_extension' => '.svg', // (.png, .jpg ...)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
];
|
|
@ -2,7 +2,7 @@
|
||||||
Find more themes: https://github.com/JulianPrieber/llc-themes
|
Find more themes: https://github.com/JulianPrieber/llc-themes
|
||||||
|
|
||||||
* Theme Name: Mono
|
* Theme Name: Mono
|
||||||
* Theme Version: 1.3
|
* Theme Version: 1.4
|
||||||
* Theme Date: 2022-05-18
|
* Theme Date: 2022-05-18
|
||||||
* Theme Author: JulianPrieber
|
* Theme Author: JulianPrieber
|
||||||
* Theme Author URI: https://github.com/JulianPrieber
|
* Theme Author URI: https://github.com/JulianPrieber
|
||||||
|
|
Loading…
Reference in New Issue