Template Selector

Issue #4 resolved
Stephan Bauer created an issue

Is there a way to select different templates? If not it would be great to select templates via typoscript and plugin flexform

Comments (1)

  1. Frans Saris

    Everything you set in the settings part of the typoscript you can use in your template.

    So with typoscript it is already possible:

    typoscript

    plugin.tx_fsmediagallery.settings.templateLayout = something
    

    fluid

    <f:if condition="{0:settings.templateLayout} == {0:'something'}">
      <f:then>
         ....
      </f:then>
      <f:else>
        ...
      </f:else>
    </f:if>
    
  2. Log in to comment