Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
792 B

  1. {% macro article_author(article) %}
  2. {% set tag = namespace({'open' : true, 'close': false}) %}
  3. {% for author in article.authors %}
  4. {% if author|string in AUTHORS %}
  5. {% if tag.open %}
  6. <hr />
  7. {% set tag.open = false %}
  8. {% set tag.close = true %}
  9. {% endif %}
  10. {% set auth = AUTHORS.get(author|string) %}
  11. <div class="author-blurb">
  12. <a href="{{ auth.url }}" target="_blank" rel="nofollow noopener noreferrer">
  13. {% if AUTHORS.get(author|string).avatar %}
  14. <img src={{ auth.avatar }} alt="{{ author }} Avatar" title="{{ author }}">
  15. {% endif %}
  16. <span class="author-name">{{ author }}</span>
  17. </a>
  18. {{ auth.blurb }}
  19. </div>
  20. {% endif %}
  21. {% endfor %}
  22. {% if tag.close %}
  23. {% endif %}
  24. {% endmacro %}