{{ resourcesCategoryList(localI18n.Videos, publicVideosList, 'public') }}
{{ resourcesCategoryList(localI18n.Documents, publicDocumentsList, 'public') }}
{% if resellerVideosList.length or resellerDocumentsList.length %}
{{ resourcesCategoryList(localI18n.Videos, resellerVideosList, 'reseller') }}
{{ resourcesCategoryList(localI18n.Documents, resellerDocumentsList, 'presellerublic') }}
{% endif %}
{{ localI18n.Resources }}
{% if publicVideosList.length %}
{% for video in publicVideosList %}
{{ resourceContentTemplate(video, 'public', localI18n) }}
{% endfor %}
{% endif %}
{% if publicDocumentsList.length %}
{% for document in publicDocumentsList %}
{{ resourceContentTemplate(document, 'public', localI18n) }}
{% endfor %}
{% endif %}
{% if resellerVideosList.length %}
{% for video in resellerVideosList %}
{{ resourceContentTemplate(video, 'reseller', localI18n) }}
{% endfor %}
{% endif %}
{% if resellerDocumentsList.length %}
{% for document in resellerDocumentsList %}
{{ resourceContentTemplate(document, 'reseller', localI18n) }}
{% endfor %}
{% endif %}
{% endblock %}