{% with comments=listing %}
{% include "comments.html" %}
{% endwith %}
{% if not listing %}
{% if u.id == v.id %}
{% set text = "There are no comments on your wall yet!" %}
{% else %}
{% set text = "There are no comments on @" ~ u.username ~ "'s wall yet!" %}
{% endif %}
{{macros.ghost_box(text, '', 1)}}
{% endif %}