Created
May 23, 2013 16:22
-
-
Save alexbaumgertner/5637339 to your computer and use it in GitHub Desktop.
Шаблон с подготовкой тестовых данных
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Шаблон Фотоальбомы /photoalbums #} | |
{# TODO: remove test data: #} | |
{% set records = [] %} | |
{% set record = [ {'image': '/uploads/photoalbums/fix-and-replay/1_small.jpg', 'url': 'photoalbum', 'title': 'Фотоальбом', 'total': 25} ] %} | |
{% for i in 1..10 %} | |
{% set records = records|merge(record) %} | |
{% endfor %} | |
{{ app.request.baseUrl }} | |
<div class="photoalbums"> | |
<h3 class="photoalbums__header i-font i-font_face_hermes">Фотографии</h3> | |
<ul class="photoalbums__list"> | |
{% for record in records %} | |
<li class="photoalbums__item"> | |
{{ this.renderPartial('_indexItem', { 'photoalbum': record }) }} | |
</li> | |
{% endfor %} | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment