Sha256: 523a6422e770bca59ff8f94150c9b6c72434fd699faf5462a45015182a46ed39
Contents?: true
Size: 1.91 KB
Versions: 8
Compression:
Stored size: 1.91 KB
Contents
{% comment %} # ----------------------------------------------------------------------------- # ~/_includes/themes/j1/procedures/components/get_category.proc # Liquid PROCEDURE to get the font icon for a given category # # https://jekyll.one # # Copyright (C) 2019 Juergen Adams # # J1 Template is licensed under the MIT License. # See: https://github.com/jekyll-one-org/j1_template/blob/master/LICENSE # # ----------------------------------------------------------------------------- # Global procedure. Read RGB category values from j1_categorys.yml and returns # the category found with liquid var category # # Usage: # 1) assign the 'category' variable to a category name. If the category (name) # couldn't be found, the category given with fallback is returned. # 2) include the get_category.proc procedure # # Example: # # {% capture get_category %}themes/{{site.template.name}}/procedures/global/get_category.proc{% endcapture %} # # {% include {{get_category}} post=my_post %} # {% assign my_category = {{_category}} %} # # ----------------------------------------------------------------------------- # Test data: # {{ liquid_var | debug }} # category: {{ item[0] }}: {{ item[1] }} # ----------------------------------------------------------------------------- {% endcomment %} {% comment %} Variables ------------------------------------------------------------ {% endcomment %} {% assign _categories = include.post.categories %} {% assign _category = nil %} {% comment %} Liquid procedures ------------------------------------------------------------ {% endcomment %} {% comment %} Main ------------------------------------------------------------ {% endcomment %} {% for item in _categories %} {% if item == "posts" %} {% continue %} {% else %} {% assign _category = item %} {% break %} {% endif %} {% endfor %}
Version data entries
8 entries across 8 versions & 1 rubygems