{% extends 'base.html' %}
{% block content %}
{% set featured_ns = namespace(items=[]) %}
{% for post in articles %}
{% set lang = post.lang or DEFAULT_LANG %}
{% set technical_flag = (post.technical or '').lower() == 'true' %}
{% if not lang.startswith('ar') and not technical_flag %}
{% if (post.featured or '').lower() == 'true' %}
{% set featured_ns.items = featured_ns.items + [post] %}
{% endif %}
{% endif %}
{% endfor %}
{% if featured_ns.items %}
{% for post in articles_page.object_list %}
{% set lang = post.lang or DEFAULT_LANG %}
{% set technical_flag = (post.technical or '').lower() == 'true' %}
{% if not lang.startswith('ar') and not technical_flag %}