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

Neue Wege mit Neos CMS

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

Neue Wege mit Neos CMS

Neos ist ein CMS, welches von Grund auf neu entwickelt wurde, um den modernen Ansprüchen von Entwickler/innen und Redakteur/innen gerecht zu werden. Dieser Talk vermittelt einen Überblick über die Konzepte und unique features.

Avatar for web&co

web&co

May 23, 2017
Tweet

More Decks by web&co

Other Decks in Technology

Transcript

  1. 'Webco.Xxx:Component.Molecule.Header': abstract: false superTypes: 'Neos.Neos:Content': true 'Webco.Xxx:Section': true ui: label:

    'Header' icon: 'icon-gear' properties: headerHeadline: type: string defaultValue: 'Enter teaser headline here' ui: inlineEditable: TRUE headerSubline: type: string defaultValue: 'Enter teaser subline here' ui: inlineEditable: TRUE Defintion
  2. Prototype prototype(Webco.Xxx:Component.Molecule.Header) < prototype(Neos.Neos:Template) { templatePath = 'some/path/to/a/template' headline =

    ${q(node).property('headerHeadline')} subline = ${q(node).property('headerSubline')} parent = ${q(node).parent().property('title')} blogPosts = ${q(site).find('[instanceof Webco.Xxx:BlogPost]').get(0)} }