{% macro reviewBox(title, content, authorIcon, authorName, hasRating = 'false', ratingValue, showDate = 'false', date) %}
{% if hasRating == 'true' %}
{% endif %} {% if authorIcon != '' %}
{% from "../_icon/_icon.html" import icon %} {{ icon( iconID = authorIcon, className = 'icon', modifierClass = 'author' ) }}
{% endif %}
{{title}}

{{content}}

{{authorName}}

{% if showDate and showDate == 'true' %}
{{date}}
{% endif %}
{% endmacro %}