{% extends 'layout.html' %} {% block title %} {{ __('FLIT SHOP') }} {% endblock %} {% block head %} {% endblock %} {% block content %}
{% if products.length == 0 %}

{{ __('This item is not yet registered.') }}

{% endif %} {% for product in products %} {% if loop.index == 0 || loop.index%4 == 0 %}
{% endif %}

{{ product.name }} {{ sails.config.project.currency.symbol }}{{ product.price|currency }}

{{ product.description }}

{% if loop.index == 0 || loop.index%4 == 0 || loop.last %}
{% endif %} {% endfor %}
{% endblock %};