Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Neos CMS Introduction, Webmardi, Lausanne, February 2015

Neos CMS Introduction, Webmardi, Lausanne, February 2015

Dominique Feyer

February 03, 2015
Tweet

More Decks by Dominique Feyer

Other Decks in Technology

Transcript

  1. Inspiring people to share Text 2017 A  quoi  ressemblera  la

     gestion  de  contenu   dans  2  ou  5  ans  ?
  2. Inspiring people to share Frontend Rendering TypoScript2 CR  Node  Type

     ->  TypoScript  Prototype  ->  Fluid  Template
  3. Inspiring people to share Working with your Nodes EEL &

    FlowQuery page  =  ${q(site).find(‘[instanceof  My.Site:ContactPage]’).get(0)}   pageDepth  =  ${q(this.page).parents().count()}   hasChildren  =  ${q(this.page).children().count()  >  0}   phoneNumber  =  ${q(this.page).property(‘phoneNumber’)}
  4. Inspiring people to share Working with your Nodes EEL &

    FlowQuery person  =  ${q(node).property(‘productOwner’)}   @override.person  =  ${this.person}   name  =  ${String.trim(person.property(‘firstname’)  +  ‘  ‘  +  person.property(‘lastname’))}   profileImage  =  TYPO3.Neos:ImageUri  {   asset  =  ${q(person).property(‘profileImage’)}   maximumWidth  =  120   maximumHeight  =  120   allowCropping  =  true   }