mostly filebased Content Presentation System
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
648B

  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>