mostly filebased Content Presentation System
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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>