mostly filebased Content Presentation System
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <!--{~
- /*
- *part of gunther-rost.com (c)2018
- */ ~} -->
- <repeat group="{{ @images }}" value="{{ @image }}">
- <div class="card">
- <check if="{{ @image.href && (! @no_links ) }}">
- <true>
- <a href="{{ @image.href }}" {{ @image.download?'download':'' }}>
- <img src="{{ @image.src1 }}" />
- <check if="{{ @image.text }}">
- <true>
- <div class="img-hover">{{ @image.text | raw}}</div>
- </true>
- </check>
- <!--<img src="{{ @image.src2 }}" class="img-hover" />-->
- </a>
- </true>
- <false>
- <img src="{{ @image.src1 }}" />
- <!--<img src="{{ @image.src2 }}" class="img-hover" />-->
- </false>
- </check>
- </div>
- </repeat>
|