mostly filebased Content Presentation System
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <!--{~
- /*
- *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>
|