- <!-- 图片列表 -->
- <div class="col-image-grid">
- {% if contentData.list and contentData.list.length > 0 %}
- {% for item in contentData.list %}
- <div class="col-image-item">
- <div class="col-image-thumb">
- {% if item.link %}
- <a href="{{item.link}}" target="_blank"><img src="{{item.image}}" alt="{{item.title}}"></a>
- {% else %}
- <img src="{{item.image}}" alt="{{item.title}}">
- {% endif %}
- </div>
- {% if item.title %}<div class="col-image-title">{{item.title}}</div>{% endif %}
- </div>
- {% endfor %}
- {% else %}
- <div class="col-empty">暂无内容</div>
- {% endif %}
- </div>
|