This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof document.addEventListener === 'function') { | |
document.addEventListener('Neos.PageLoaded', function(event) { | |
// Do stuff | |
}, false); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Columns | |
// | |
.neos-nodetypes-twocolumn, | |
.neos-nodetypes-threecolumn { | |
display: flex; | |
.column { | |
padding-left: 15px; | |
padding-right: 15px; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# clear cache in production | |
FLOW_CONTEXT=Production ./flow flow:cache:flush --force && ./flow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TS | |
config.contentObjectExceptionHandler = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NodeTypes.yaml | |
'Neos.NodeTypes:Page': | |
properties: | |
backgroundimage: | |
type: 'Neos\Media\Domain\Model\ImageInterface' | |
ui: | |
label: 'Hintergrund Bild' | |
inspector: | |
group: 'document' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Neos.NodeTypes:Page': | |
childNodes: | |
'main': | |
constraints: | |
nodeTypes: | |
'Neos.NodeTypes:Headline': TRUE | |
'Neos.NodeTypes:Text': TRUE | |
'Neos.NodeTypes:Image': TRUE | |
'Neos.NodeTypes:Html': TRUE | |
'Neos.NodeTypes:TwoColumn': TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
page = PAGE | |
# page.typeNum = 123 | |
page.10 = FLUIDTEMPLATE | |
page.10 { | |
templateName = TEXT | |
templateName.stdWrap { | |
cObject = TEXT | |
cObject { | |
data = levelfield:-2,backend_layout_next_level,slide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . \( -name '.DS_Store' -or -name '._*' \) -delete |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Transitions | |
// | |
// | |
$transition-default-duration: ###0.3s###; | |
$transition-default-timing: ease-out; | |
$transition-default-delay: 0s; | |
@mixin transit($prop: all){ | |
transition: $prop $transition-default-duration $transition-default-timing $transition-default-delay; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Breakpoints | |
*/ | |
// define breakpoints | |
// ------------------------------ | |
$breakpoints: ( | |
micro: 320px, | |
xs: 502px, | |
sm: 768px, |
NewerOlder