inital commit
This commit is contained in:
commit
7edf5b45c0
21
Configuration/TCA/Overrides/100_sys_template.php
Normal file
21
Configuration/TCA/Overrides/100_sys_template.php
Normal 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'
|
||||
);
|
0
Configuration/TypoScript/Base/constants.typoscript
Normal file
0
Configuration/TypoScript/Base/constants.typoscript
Normal file
1
Configuration/TypoScript/Base/setup.typoscript
Normal file
1
Configuration/TypoScript/Base/setup.typoscript
Normal file
@ -0,0 +1 @@
|
||||
page.includeCSS.theme = EXT:a2g_theme/Resources/Public/Css/theme.scss
|
1
Configuration/TypoScript/constants.typoscript
Normal file
1
Configuration/TypoScript/constants.typoscript
Normal file
@ -0,0 +1 @@
|
||||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_theme/Configuration/TypoScript/Base/constants.typoscript">
|
1
Configuration/TypoScript/setup.typoscript
Normal file
1
Configuration/TypoScript/setup.typoscript
Normal file
@ -0,0 +1 @@
|
||||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_theme/Configuration/TypoScript/Base/setup.typoscript">
|
9
LICENSE
Normal file
9
LICENSE
Normal 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
6
README.md
Normal 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.
|
||||
|
1
Resources/Private/Bootstrap_package/README.md
Normal file
1
Resources/Private/Bootstrap_package/README.md
Normal file
@ -0,0 +1 @@
|
||||
put your custom Templates, Layouts and Partials here
|
3
Resources/Public/Css/theme.scss
Normal file
3
Resources/Public/Css/theme.scss
Normal 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
30
ext_emconf.php
Normal 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' => [],
|
||||
],
|
||||
];
|
Loading…
Reference in New Issue
Block a user