This file contains hidden or 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
# Flow 3.0+ | |
Flow_Session_Storage: | |
persistent: TRUE | |
Flow_Session_MetaData: | |
persistent: TRUE | |
# Flow 2.0-2.3 (only works with Surf deployment – not flow:cache:flush command) | |
Flow_Session_Storage: | |
backendOptions: |
This file contains hidden or 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
# Redis (has to be configured to different databases on shared hosting) | |
TYPO3_TypoScript_Content: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 | |
Flow_Mvc_Routing_Resolve: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 |
This file contains hidden or 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
prototype(Acme.Donate:Donate) < prototype(TYPO3.Neos:Plugin) { | |
package = 'Venstre.VenstreDk' | |
controller = 'Donate' | |
node = ${node} | |
} |
This file contains hidden or 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
{namespace neos=TYPO3\Neos\ViewHelpers} | |
{namespace media=TYPO3\Media\ViewHelpers} | |
<f:layout name="Page" /> | |
<f:section name="body"> | |
<article itemscope="" itemtype="http://schema.org/Article" xmlns:f="http://www.w3.org/1999/html"> | |
<header> | |
<f:if condition="{tags}"> | |
<f:for each="{tags}" as="articleTag" iteration="iterator"> | |
<f:if condition="{iterator.isFirst}"> |
This file contains hidden or 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
{namespace media=TYPO3\Media\ViewHelpers} | |
<media:image | |
additionalAttributes="{srcset: '{media:uri.image(image: image, maximumWidth: 400)} 2x, | |
{media:uri.image(image: image, maximumWidth: 200)} 1x'}" | |
asset="{image}" | |
alt="{alternativeText}" | |
title="{title}" | |
maximumWidth="200" /> |
This file contains hidden or 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
node_modules |
This file contains hidden or 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
prototype(Page) { | |
head.stylesheets.backend = TYPO3.TypoScript:Tag { | |
tagName = 'link' | |
attributes { | |
rel = 'stylesheet' | |
href = TYPO3.TypoScript:ResourceUri { | |
package = 'Venstre.VenstreDk' | |
path = 'Styles/Backend.css' | |
} | |
} |
This file contains hidden or 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
function reloadCards() { | |
var cardsContainer = $('.cards'); | |
if (cardsContainer.data('masonry')) { | |
cardsContainer.masonry('reloadItems').masonry('layout'); | |
} | |
} | |
function initializeResize(elements) { | |
elements.resize(function() { | |
var cardsContainer = $('.cards'); |
This file contains hidden or 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
- | |
name: 'Google Sitemap' | |
uriPattern: '{node}sitemap.xml' | |
defaults: | |
'@package': 'TYPO3.Neos' | |
'@controller': 'Frontend\Node' | |
'@action': 'show' | |
'@format': 'xml' | |
routeParts: | |
'node': |
This file contains hidden or 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
'TYPO3.Neos.NodeTypes:Page': | |
ui: | |
inspector: | |
groups: | |
document: | |
label: 'Document' | |
position: 1 | |
properties: | |
metaDescription: | |
type: string |