{% comment %}
Includes an image of a person on the page.
Assumes that there is a variable "person" already defined.
It holds a key "image" and an associated value which is a subpath to the
image file from the site's image directory (see _config.yml).
If the image could not be found for any reason, a default avatar image
will be substituted.
{% endcomment %}
{% assign person = include.person %}
{% if person %}
{% if person.image %}
{% assign image-url = site.directory.images
| append: "members/"
| append: person.image %}
{% else %}