badge.html 1.0 KB

1234567891011121314151617181920
  1. {% removeemptylines %}
  2. {% assign el = 'span' %}
  3. <{{ el }} class="badge{% if include['size'] %} badge-{{ include['size'] }}{% endif %}{% if include.color %} bg-{{ include.color }} text-{{ include.color }}-fg{% endif %}{% if include.class %} {{ include.class }}{% endif %}">
  4. {% if include.person-id %}
  5. {% assign person-id = include.person-id | minus: 1 %}
  6. {% assign person = site.data.people[person-id] %}
  7. {% assign src = person.photo %}
  8. {% unless src %}
  9. {% assign placeholder = person.full_name | first_letters %}
  10. {% endunless %}
  11. <{{ el }} class="avatar" style="background-image: url({{ site.base }}/{{ src }})">{% unless src %}{{ person.full_name | first_letters }}{% endunless %}</{{ el }}>
  12. {% endif %}
  13. {% if include.text %}
  14. {{ include.text }}
  15. {% else %}
  16. {{ person.full_name }}
  17. {% endif %}
  18. {% if include.addon %}<{{ el }} class="badge-addon {% if include.addon-color%}bg-{{ include.addon-color }}{% endif %}">{{ include.addon }}</{{ el }}>{% endif %}
  19. </{{ el }}>
  20. {% endremoveemptylines %}