{% macro Me(name, email, description) %}
{% if name %}
{{ name }}
{% endif %}

{% if description %} {{ description }}{% else %}Nothing to say.{% endif %}

{% endmacro %}