{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags wagtailembeds_tags wagtailsettings_tags core_tags comments gem_tags molo_forms_tags %} {% get_settings %} {% block content %} {% load_sections service_aggregator=True as service_aggregators %} {% load_sections as sections %} {% if sections %} {% for section in sections %} {% load_child_articles_for_section self count=1 featured_in_section=True as featured_articles %} {% content_is section "Videos" as is_video_section %} {% if self.pk == section.pk %} {% if is_video_section %}
{% latest_listing_homepage %}
{% else %}
{% if self.get_effective_image %} {% image self.get_effective_image width-200 as section_photo %} {{ self.title }} {% else %} {{self.title}} {% endif %}
{% load_child_sections_for_section section=self as child_sections %} {# #}
{% if child_sections %} {% for child_section in child_sections %}

{{child_section.title}}

{% load_child_articles_for_section child_section False 10 as articles %}
    {% for article in articles %}
  • {% if article.image %}
    {% image article.image width-480 format-jpeg as teaser_thumbnail %} {{ article.title }}
    {% endif %}

    {{ article.title|smarttruncatechars:80|safe}}

    {% comment %} {% endcomment %} {% forms_list_linked_to_pages article %}
    {% if article.subtitle %}
    {{ article.subtitle|smarttruncatechars:50|safe}}
    {% endif %} {% for block in article.body %} {% if not block.block_type == 'media' %}

    {{block.value}}

    {% endif %} {% endfor %}
  • {% endfor %}
{% endfor %} {% endif %}
{# #} {% if not is_video_section %} {% load_child_articles_for_section self.get_first_sibling.specific False as articles %} {% else %} {% load_child_articles_for_section self as articles %} {% endif %} {% if articles %}

{% trans "Arre dekho" %}

    {% for article in articles %}
  • {% for block in article.body %} {% if block.value.type == "video" %} {% if block.value.youtube_link %}
    {% embed block.value.youtube_link %}
    {% endif %} {% else %} {% if forloop.last and article.get_effective_image %} {% endif %} {% endif %} {% endfor %}

    {{ article.title|smarttruncatechars:45|safe}}

    {% for block in article.body %} {% if block.value.type == "video" %} {% with block.value as media %} ({{block.value.duration|seconds_to_time}}) {% endwith %} {% endif %} {% endfor %} {% if article.subtitle %}

    {{ article.subtitle|smarttruncatechars:50|safe}}

    {% endif %}
  • {% endfor %}
{% endif %}
{% endif %} {% endif %} {% endfor %} {% if not is_video_section %} {% load_child_articles_for_section self.get_first_sibling.specific False as articles %} {% else %} {% load_child_articles_for_section self as articles %} {% endif %}
{% for article in featured_articles %} {% include "comments/comment_block.html" %} {% endfor %}
{% for service_aggregator in service_aggregators %} {% if self.pk == service_aggregator.pk %}

{{service_aggregator.title}}

{% load_child_articles_for_section service_aggregator count=8 as services %} {% if services and articles_paginated.paginator.num_pages > 1 %} {% endif %}
{% endif %} {% endfor %} {% endif %} {% endblock %}