badge.html 1.2 KB

12345678910111213141516171819202122
  1. {%- assign el = 'span' -%}
  2. <{{ el }} class="badge{% if include.scale %} badge-{{ include.scale }}{% endif %}{% if include.color %} bg-{{ include.color }}{% if include.light %}-lt{% endif %} text-{{ include.color }}{% if include.light %}-lt{% endif %}-fg{% endif %}{% if include.class %} {{ include.class }}{% endif %}">
  3. {%- if include.icon -%}
  4. {%- assign icon = include.icon -%}
  5. {% include "ui/icon.html" icon=icon %}
  6. {%- endif -%}
  7. {%- if include.person-id -%}
  8. {%- assign person-id = include.person-id | minus: 1 -%}
  9. {%- assign person = people[person-id] -%}
  10. {%- assign src = person.photo -%}
  11. {%- unless src -%}
  12. {%- assign placeholder = person.full_name | first_letters -%}
  13. {%- endunless -%}
  14. <{{ el }} class="avatar" style="background-image: url({{ page | relative }}/{{ src }})">{% unless src %}{{ person.full_name | first_letters }}{% endunless %}</{{ el }}>
  15. {%- endif -%}
  16. {%- if include.text -%}
  17. {{ include.text }}
  18. {%- else -%}
  19. {{ person.full_name }}
  20. {%- endif -%}
  21. {% if include.addon %}<{{ el }} class="badge-addon {% if include.addon-color%}bg-{{ include.addon-color }}{% endif %}">{{ include.addon }}</{{ el }}>{% endif -%}
  22. </{{ el }}>