Sha256: c488d52738cc067c3ec1708638cd08da3e58ad664712b852e6845fcdcb1109e9

Contents?: true

Size: 767 Bytes

Versions: 12

Compression:

Stored size: 767 Bytes

Contents

{% case include.rating %}
  {% when 1 %}
    {% assign title = 'No me gustó' %}
  {% when 2 %}
    {% assign title = 'Estuvo bien' %}
  {% when 3 %}
    {% assign title = 'Me gustó' %}
  {% when 4 %}
    {% assign title = 'Realmente me gustó' %}
  {% when 5 %}
    {% assign title = 'Fue increíble' %}
{% endcase %}

<div class="c-rating"
     title="{{ title }}"
     itemscope
     itemtype="http://schema.org/AggregateRating">

  {% for i in (1..5) %}
    {% if i <= include.rating %}
      <span class="c-icon  c-icon--star-full"></span>
    {% else %}
      <span class="c-icon  c-icon--star-empty"></span>
    {% endif %}
  {% endfor %}

  <span class="u-hidden-visually"
        itemprop="ratingValue">{{ include.rating }}</span>

</div><!-- /c-rating -->

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alna-jekyll-theme-1.0.1 _includes/rating.html
alna-jekyll-theme-1.0.0 _includes/rating.html
alna-jekyll-theme-0.1.9 _includes/rating.html
alna-jekyll-theme-0.1.8 _includes/rating.html
alna-jekyll-theme-0.1.7 _includes/rating.html
alna-jekyll-theme-0.1.6 _includes/rating.html
alna-jekyll-theme-0.1.5 _includes/rating.html
alna-jekyll-theme-0.1.4 _includes/rating.html
alna-jekyll-theme-0.1.3 _includes/rating.html
alna-jekyll-theme-0.1.2 _includes/rating.html
alna-jekyll-theme-0.1.1 _includes/rating.html
alna-jekyll-theme-0.1.0 _includes/rating.html