update
This commit is contained in:
parent
cfb7542eea
commit
84693feced
@ -44,6 +44,7 @@ indent_size = 4
|
|||||||
[*.md]
|
[*.md]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
# ReST-Files
|
# ReST-Files
|
||||||
[*.rst]
|
[*.rst]
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
//
|
//
|
||||||
// Variables
|
// Variables
|
||||||
//
|
//
|
||||||
|
$body-bg : gray;
|
||||||
|
$body-color: green;
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
//
|
|
||||||
// Variables
|
|
||||||
//
|
|
||||||
@import "variables";
|
|
||||||
|
|
||||||
//
|
|
||||||
// Import needed Bootstrap Package Files
|
|
||||||
//
|
|
||||||
@import "../../../../../bootstrap_package/Resources/Public/Scss/Theme/theme";
|
|
||||||
37
Build/StyleSheets/rte.scss
Normal file
37
Build/StyleSheets/rte.scss
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
@charset "utf-8";
|
||||||
|
|
||||||
|
@import "Bootstrap/functions";
|
||||||
|
|
||||||
|
@import "Theme/variables";
|
||||||
|
|
||||||
|
@import "Bootstrap/variables";
|
||||||
|
@import "Bootstrap/mixins";
|
||||||
|
@import "Bootstrap/reboot";
|
||||||
|
@import "Bootstrap/type";
|
||||||
|
|
||||||
|
// ***************************************
|
||||||
|
// rte styles
|
||||||
|
// ***************************************
|
||||||
|
|
||||||
|
body.cke_editable.cke_contents_ltr {
|
||||||
|
margin : auto;
|
||||||
|
padding : rem-calc(10 20);
|
||||||
|
color : $body-color;
|
||||||
|
font-family : $font-family-base;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color : $body-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5 {
|
||||||
|
color : $headings-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-highlight {
|
||||||
|
color : $primary;
|
||||||
|
}
|
||||||
@ -1,2 +1,15 @@
|
|||||||
|
@import "Bootstrap/functions";
|
||||||
|
|
||||||
|
@import "Theme/variables";
|
||||||
|
|
||||||
|
@import "Bootstrap/variables";
|
||||||
|
@import "Bootstrap/mixins";
|
||||||
@import "Bootstrap/reboot";
|
@import "Bootstrap/reboot";
|
||||||
@import "Bootstrap/bootstrap-grid.scss";
|
|
||||||
|
@import "Bootstrap/grid";
|
||||||
|
@import "Bootstrap/utilities/display";
|
||||||
|
@import "Bootstrap/utilities/flex";
|
||||||
|
@import "Bootstrap/utilities/spacing";
|
||||||
|
|
||||||
|
// Bootstrap Optional
|
||||||
|
@import "Bootstrap/type";
|
||||||
|
|||||||
@ -5,11 +5,11 @@
|
|||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"outDir": "./compiled/js/",
|
"outDir": "./compiled/js/",
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"rootDir": "./Build/TypeScript",
|
"rootDir": "./TypeScript",
|
||||||
},
|
},
|
||||||
|
|
||||||
"include": [
|
"include": [
|
||||||
"./Build/TypeScript/*"
|
"./TypeScript/*"
|
||||||
],
|
],
|
||||||
|
|
||||||
"exclude": [
|
"exclude": [
|
||||||
|
|||||||
@ -8,7 +8,8 @@ module.exports = ( env, argv ) => {
|
|||||||
let config = {
|
let config = {
|
||||||
entry: {
|
entry: {
|
||||||
default: './TypeScript/app.ts',
|
default: './TypeScript/app.ts',
|
||||||
styles: './StyleSheets/styles.scss'
|
styles: './StyleSheets/styles.scss',
|
||||||
|
rte: './StyleSheets/rte.scss'
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [ '.ts', '.js' ]
|
extensions: [ '.ts', '.js' ]
|
||||||
@ -19,7 +20,13 @@ module.exports = ( env, argv ) => {
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new MiniCssExtractPlugin({
|
new MiniCssExtractPlugin({
|
||||||
filename: '../StyleSheets/[name].css'
|
filename: ({chunk}) => {
|
||||||
|
console.log(chunk.runtime);
|
||||||
|
if (chunk.runtime == "rte") {
|
||||||
|
return '../StyleSheets/Backend/[name].css';
|
||||||
|
}
|
||||||
|
return '../StyleSheets/[name].css';
|
||||||
|
}
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
cache: {
|
cache: {
|
||||||
@ -52,6 +59,7 @@ module.exports = ( env, argv ) => {
|
|||||||
use: [{
|
use: [{
|
||||||
loader: MiniCssExtractPlugin.loader,
|
loader: MiniCssExtractPlugin.loader,
|
||||||
options: {
|
options: {
|
||||||
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
loader: 'css-loader'
|
loader: 'css-loader'
|
||||||
|
|||||||
17
Configuration/Yaml/Form/DefaultSetup.yaml
Normal file
17
Configuration/Yaml/Form/DefaultSetup.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
TYPO3:
|
||||||
|
CMS:
|
||||||
|
Form:
|
||||||
|
persistenceManager:
|
||||||
|
allowSaveToExtensionPaths: true
|
||||||
|
allowedExtensionPaths:
|
||||||
|
10: EXT:sitepackage/Resources/Private/Forms/
|
||||||
|
|
||||||
|
prototypes:
|
||||||
|
standard:
|
||||||
|
formElementsDefinition:
|
||||||
|
Form:
|
||||||
|
renderingOptions:
|
||||||
|
translation:
|
||||||
|
translationFile:
|
||||||
|
- 'EXT:form/Resources/Private/Language/locallang.xlf'
|
||||||
|
- 'EXT:sitepackage/Resources/Private/Language/locallang.xlf'
|
||||||
26
Configuration/Yaml/RTE/DefaultSetup.yaml
Normal file
26
Configuration/Yaml/RTE/DefaultSetup.yaml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Load default processing options
|
||||||
|
imports:
|
||||||
|
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" }
|
||||||
|
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" }
|
||||||
|
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" }
|
||||||
|
|
||||||
|
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config
|
||||||
|
editor:
|
||||||
|
config:
|
||||||
|
height: 400
|
||||||
|
contentsCss: ["EXT:rte_ckeditor/Resources/Public/Css/contents.css", "EXT:sitepackage/Resources/Public/StyleSheets/Build/rte.css"]
|
||||||
|
format_tags: "p;h2;h3;h4;h5"
|
||||||
|
|
||||||
|
toolbar:
|
||||||
|
- [ 'Undo', 'Redo' ]
|
||||||
|
- [ 'Format', 'Styles' ]
|
||||||
|
- [ 'RemoveFormat' ]
|
||||||
|
- [ 'Link', 'Unlink' ]
|
||||||
|
- [ 'Cut', 'Copy', 'PasteText', ]
|
||||||
|
- [ 'NumberedList', 'BulletedList', 'Table', 'SpecialChar']
|
||||||
|
- [ 'Bold', 'Italic' ]
|
||||||
|
- [ 'Subscript', 'Superscript' ]
|
||||||
|
- [ 'Source', 'Maximize' ]
|
||||||
|
|
||||||
|
removePlugins:
|
||||||
|
- image
|
||||||
@ -2,3 +2,12 @@ Sitepackage for the project "Sitepackage"
|
|||||||
==============================================================
|
==============================================================
|
||||||
|
|
||||||
Add some explanation here.
|
Add some explanation here.
|
||||||
|
|
||||||
|
|
||||||
|
# Build Assets
|
||||||
|
to build Assets
|
||||||
|
```sh
|
||||||
|
cd Build
|
||||||
|
npm install
|
||||||
|
npm run watch
|
||||||
|
```
|
||||||
|
|||||||
54
Resources/Private/Forms/contact.form.yaml
Normal file
54
Resources/Private/Forms/contact.form.yaml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
renderingOptions:
|
||||||
|
submitButtonLabel: Senden
|
||||||
|
type: Form
|
||||||
|
identifier: Kontakt
|
||||||
|
label: Kontakt
|
||||||
|
prototypeName: standard
|
||||||
|
finishers:
|
||||||
|
-
|
||||||
|
options:
|
||||||
|
subject: '[Website] - Kontaktformular'
|
||||||
|
recipientAddress: info@chrosey.de
|
||||||
|
recipientName: 'Christian Seyfferth'
|
||||||
|
senderAddress: info@chrosey.de
|
||||||
|
senderName: 'Webmailer'
|
||||||
|
replyToAddress: ''
|
||||||
|
carbonCopyAddress: ''
|
||||||
|
blindCarbonCopyAddress: ''
|
||||||
|
format: html
|
||||||
|
attachUploads: 'true'
|
||||||
|
translation:
|
||||||
|
language: ''
|
||||||
|
identifier: EmailToReceiver
|
||||||
|
renderables:
|
||||||
|
-
|
||||||
|
renderingOptions:
|
||||||
|
previousButtonLabel: 'vorheriger Schritt'
|
||||||
|
nextButtonLabel: 'nächster Schritt'
|
||||||
|
type: Page
|
||||||
|
identifier: page-1
|
||||||
|
label:
|
||||||
|
renderables:
|
||||||
|
-
|
||||||
|
defaultValue: ''
|
||||||
|
type: Text
|
||||||
|
identifier: Name
|
||||||
|
label: Name
|
||||||
|
-
|
||||||
|
defaultValue: ''
|
||||||
|
type: Text
|
||||||
|
identifier: Email
|
||||||
|
label: E-Mail
|
||||||
|
properties:
|
||||||
|
fluidAdditionalAttributes:
|
||||||
|
required: required
|
||||||
|
validators:
|
||||||
|
-
|
||||||
|
identifier: NotEmpty
|
||||||
|
-
|
||||||
|
identifier: EmailAddress
|
||||||
|
-
|
||||||
|
defaultValue: ''
|
||||||
|
type: Textarea
|
||||||
|
identifier: Message
|
||||||
|
label: Nachricht
|
||||||
Loading…
x
Reference in New Issue
Block a user