Skip to content

Instantly share code, notes, and snippets.

@Belyash
Last active September 28, 2015 11:43
Show Gist options
  • Save Belyash/1ca1e2f9894871b09df3 to your computer and use it in GitHub Desktop.
Save Belyash/1ca1e2f9894871b09df3 to your computer and use it in GitHub Desktop.
Новая вёрстка списка каталога
<div class="apps-block apps-block_best">
<h1 class="apps-block__title">Рекомендуем</h1>
<div class="apps-block__list">
{{#each items}}
<a href="{{link}}" class="apps-list-item">
<span style="background-image: url({{pic3}});" class="apps-list-item__pic">
<span class="apps-list-item__rating ico-app-star-gray" title="{{locales.ratingApplication}}: {{votes2DigitRounded}}">
<span class="apps-list-item__rating-stars ico-app-star-white" style="width: {{votesStarsWidth}}%;"></span>
</span>
</span>
<span class="apps-list-item__title">{{name}}</span>
{{#if genres}}
<span class="apps-list-item__genres">
{{#each genres}}
{{name}}
{{/each}}
</span>
{{/if}}
<span class="apps-list-item__installs">
<i class="apps-list-item__installs-icon icon-mmico_people_16"></i>
{{installationsFormatted}}
</span>
</a>
{{/each}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment