{% comment %} non DRY code {% endcomment %} {% assign star_rating = section.settings.star_rating %} <div class="star-rating"> {% case star_rating %} {% when 1 %} {% render 'icon', icon: 'star' %} {% when 2 %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% when 3 %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% when 4 %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% when 5 %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% render 'icon', icon: 'star' %} {% endcase %} </div> {% comment %} DRY code {% endcomment %} {% assign star_rating = section.settings.star_rating %} <div class="star-rating"> {% for i in (1..star_rating) %} {% render 'icon', icon: 'star' %} {% endfor %} </div>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter