LatestNews.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {namespace v=FluidTYPO3\Vhs\ViewHelpers}
  2. {namespace ot=Opentalent\OtTemplating\ViewHelpers}
  3. <f:comment><!-- Next news --></f:comment>
  4. <f:comment><!-- Get the news page' uid if the page is found --></f:comment>
  5. <v:variable.set value="{ot:newsPage.getId()}" name="newsPageUid"/>
  6. <f:if condition="{newsPageUid} > 0">
  7. <section class="mt-50 news">
  8. <div class="container">
  9. <div class="row">
  10. <div class="col-lg-12 col-md-12">
  11. <div class="text-center">
  12. <h2><f:translate key="latest-news"/></h2>
  13. </div>
  14. </div>
  15. <ot:cObject typoscriptObjectPath="lib.tx_ottemplating.widgets.news_latest"
  16. settings="{'settings.defaultDetailPid': newsPageUid}"/>
  17. <footer>
  18. <f:if condition="{newsPageUid} > 0">
  19. <div class="col-lg-12 col-md-12">
  20. <div class="text-center">
  21. <f:link.page pageUid="{newsPageUid}">
  22. <f:translate key="see-all-news"/>
  23. </f:link.page>
  24. </div>
  25. </div>
  26. </f:if>
  27. </footer>
  28. </div>
  29. </div>
  30. </f:if>