Guest User

TeasrFlux

a guest
Jan 21st, 2015
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <div xmlns="http://www.w3.org/1999/xhtml" lang="en"
  2. xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"
  3. xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"
  4. xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers">
  5.  
  6. <f:layout name="Content"/>
  7.  
  8. <f:section name="Configuration">
  9. <flux:form id="teaser">
  10. <flux:field.file name="image" allowed="jpg" uploadFolder="uploads/tx_quickstart" minItems="1" maxItems="1" size="1" />
  11. <flux:field.input name="headline" />
  12. <flux:field.text name="teasertext" rows="5" cols="30" required="TRUE" />
  13. <flux:field.input name="link">
  14. <flux:wizard.link activeTab="page"/>
  15. </flux:flexform.field.input>
  16. </flux:form>
  17. </f:section>
  18.  
  19. <f:section name="Preview">
  20. <table width="100%">
  21. <tr>
  22. <td width="50%"><v:media.image src="uploads/tx_quickstart/{image}" alt="{headline}" width="100" /></td>
  23. <td width="50%">
  24. <f:format.crop maxCharacters="50">{teasertext}</f:format.crop>
  25. <f:if condition="{link}">
  26. <strong>Link:</strong> {link}
  27. </f:if>
  28. </td>
  29. </tr>
  30. </table>
  31. </f:section>
  32.  
  33. <f:section name="Main">
  34. <div class="quickstart-teaser">
  35. <article>
  36. <h1>{headline}</h1>
  37. <div class="image-wrapper">
  38. <v:media.image src="uploads/tx_quickstart/{image}" alt="{headline}" width="200" />
  39. </div>
  40. <div class="text-wrapper">
  41. <f:format.nl2br>{teasertext}</f:format.nl2br>
  42. <f:if condition="{link}">
  43. <f:link.page pageUid="{link}" title="{headline}" class="readmore">read more</f:link.page>
  44. </f:if>
  45. </div>
  46. </article>
  47. </div>
  48. </f:section>
  49.  
  50. </div>
Advertisement
Add Comment
Please, Sign In to add comment