commit 7edf5b45c0f616a8b894fe8083808af77ef9eb28 Author: Raphael Martin Date: Thu Jan 4 19:07:08 2024 +0100 inital commit diff --git a/Configuration/TCA/Overrides/100_sys_template.php b/Configuration/TCA/Overrides/100_sys_template.php new file mode 100644 index 0000000..2907850 --- /dev/null +++ b/Configuration/TCA/Overrides/100_sys_template.php @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/Configuration/TypoScript/setup.typoscript b/Configuration/TypoScript/setup.typoscript new file mode 100644 index 0000000..c844b93 --- /dev/null +++ b/Configuration/TypoScript/setup.typoscript @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..46b7edd --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2023 altogether + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..8c8fb57 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# a2g_theme + +## about + +In this repository you have an example how to costumize existing plugins, in this case the bootstrap_package, for your TYPO3 project. + diff --git a/Resources/Private/Bootstrap_package/README.md b/Resources/Private/Bootstrap_package/README.md new file mode 100644 index 0000000..2c766f9 --- /dev/null +++ b/Resources/Private/Bootstrap_package/README.md @@ -0,0 +1 @@ +put your custom Templates, Layouts and Partials here \ No newline at end of file diff --git a/Resources/Public/Css/theme.scss b/Resources/Public/Css/theme.scss new file mode 100644 index 0000000..223b83c --- /dev/null +++ b/Resources/Public/Css/theme.scss @@ -0,0 +1,3 @@ +// append your costum css/scss here after the theme import + +@import '../../../../bootstrap_package/Resources/Public/Scss/bootstrap5/theme'; diff --git a/ext_emconf.php b/ext_emconf.php new file mode 100644 index 0000000..6f34b26 --- /dev/null +++ b/ext_emconf.php @@ -0,0 +1,30 @@ + 'altogether Theme', + 'description' => '', + 'category' => 'templates', + 'author' => 'Raphael Martin', + 'author_email' => 'rama@altogether.at', + 'state' => 'stable', + 'clearCacheOnLoad' => 0, + 'version' => '1.0.0', + 'constraints' => [ + 'depends' => [ + 'typo3' => '12.4.9', + 'bootstrap_package' => '14.0.7' + ], + 'conflicts' => [], + 'suggests' => [], + ], +];