inital commit

This commit is contained in:
Raphael Martin 2024-01-04 19:07:08 +01:00
commit 7edf5b45c0
10 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?php
defined('TYPO3') || die();
/***************
* TypoScript: Full Package
* This includes the full setup including all configurations
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'a2g_theme',
'Configuration/TypoScript',
'Altogether Theme: Full Package'
);
/***************
* TypoScript: Base Package
*/
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'a2g_theme',
'Configuration/TypoScript/Base',
'Altogether Theme: Base Package'
);

View File

@ -0,0 +1 @@
page.includeCSS.theme = EXT:a2g_theme/Resources/Public/Css/theme.scss

View File

@ -0,0 +1 @@
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_theme/Configuration/TypoScript/Base/constants.typoscript">

View File

@ -0,0 +1 @@
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_theme/Configuration/TypoScript/Base/setup.typoscript">

9
LICENSE Normal file
View File

@ -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.

6
README.md Normal file
View File

@ -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.

View File

@ -0,0 +1 @@
put your custom Templates, Layouts and Partials here

View File

@ -0,0 +1,3 @@
// append your costum css/scss here after the theme import
@import '../../../../bootstrap_package/Resources/Public/Scss/bootstrap5/theme';

30
ext_emconf.php Normal file
View File

@ -0,0 +1,30 @@
<?php
/***************************************************************
* Extension Manager/Repository config file for ext: "a2g_shop"
*
* Auto generated by Extension Builder 2021-08-20
*
* Manual updates:
* Only the data in the array - anything else is removed by next write.
* "version" and "dependencies" must not be touched!
***************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => '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' => [],
],
];