Guest User

Untitled

a guest
Jan 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {%- capture list_of_scores -%}
  2. {{wa}}|Wine Advocate,{{bh}}|Burghound,{{ag}}|Vinous,{{jr}}|Jancis Robinson,{{jg}}|John Gilman
  3. {%- endcapture -%}
  4. {%- capture scores -%}{{wa}},{{bh}},{{ag}},{{jr}},{{jg}}{%- endcapture -%}
  5.  
  6. {% assign scores_array = list_of_scores | split: ',' %}
  7. {% assign scores = list_of_scores | split: ',' %}
  8. {% assign highest_score = scores | first | plus: 0 %}
  9.  
  10.  
  11. {% for score_val in scores %}
  12. {% assign cur_score = score_val | plus: 0 %}
  13. {% if cur_score >= highest_score %}
  14. {% assign highest_score = score_val | plus: 0 %}
  15. {% endif %}
  16. {% endfor %}
  17.  
  18. {% for score_and_name in scores_array %}
  19. {% assign split_score_and_name = score_and_name | split: '|' %}
  20. {% assign score = split_score_and_name[0] %}
  21. {% assign score = highest_score %}
  22. {% assign name = split_score_and_name[1] %}
  23. {% endfor %}
  24.  
  25. <span>{{ highest_score }}</span>
  26. <h5>{{ name }}</h5>
Add Comment
Please, Sign In to add comment