{% if title == "Início" %} {% set title = "Início" %} {% elseif title == "Tag" %} {% set title = "Tag: " + tag %} {% endif %} {% extends 'layout.html' %} {% block opengraph %} {% endblock %} {% block body %}
{% if messages.success %} {% endif %} {% if messages.error %} {% endif %} {% if messages.info %} {% endif %}
{% macro printWatches(title, top) -%}

{{ title }}

{{ alltags }}

{%- endmacro %} {% macro printTagCards(tagname) -%}

{{ tagname | capitalize}}

{%- endmacro %}
{% set tagsArray = [ __('social'), __('tech'), __('musica'), __('sci-fi'), __('ativismo'), __('veganismo'), __('feminismo'), __('educação'), __('animação'), __('comédia'), __('religião'), __('natureza')] %} {% for tags in tagsArray%} {{ printTagCards(tags)}} {% endfor %}

{{ printWatches(__('Longas Recém Chegados'), 'new-l') }} {{ printWatches(__('Curtas Recém Chegados'), 'new-c') }} {{ printWatches(__('Longas Populares'), 'top-l') }} {{ printWatches(__('Curtas Populares'), 'top-c') }} {{ printWatches(__('Séries Populares'), 'top-s') }}
{% endblock %}