mostly filebased Content Presentation System
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

image-with-links.html 648B

12345678910111213141516171819202122232425
  1. <!--{~
  2. /*
  3. *part of gunther-rost.com (c)2018
  4. */ ~} -->
  5. <repeat group="{{ @images }}" value="{{ @image }}">
  6. <div class="card">
  7. <check if="{{ @image.href && (! @no_links ) }}">
  8. <true>
  9. <a href="{{ @image.href }}" {{ @image.download?'download':'' }}>
  10. <img src="{{ @image.src1 }}" />
  11. <check if="{{ @image.text }}">
  12. <true>
  13. <div class="img-hover">{{ @image.text | raw}}</div>
  14. </true>
  15. </check>
  16. <!--<img src="{{ @image.src2 }}" class="img-hover" />-->
  17. </a>
  18. </true>
  19. <false>
  20. <img src="{{ @image.src1 }}" />
  21. <!--<img src="{{ @image.src2 }}" class="img-hover" />-->
  22. </false>
  23. </check>
  24. </div>
  25. </repeat>