{% extends 'base.html.twig' %}
{% block title %}Podcasty{% endblock %}
{% block head %}
<meta name="description" content="Prehľad všetkých podcastov na našej platforme. Objav novinky, rozhovory a obľúbené relácie.">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Podcasty – Všetky epizódy">
<meta name="twitter:description" content="Prehľad všetkých podcastov na našej platforme. Objav novinky, rozhovory a obľúbené relácie.">
<meta name="twitter:url" content="{{ absolute_url(path('homepage') ~ 'podcasty') }}">
<meta property="og:type" content="website">
<meta property="og:title" content="Podcasty – Všetky epizódy">
<meta property="og:description" content="Prehľad všetkých podcastov na našej platforme. Objav novinky, rozhovory a obľúbené relácie.">
<meta property="og:url" content="{{ absolute_url(path('homepage') ~ 'podcasty') }}">
{% endblock %}
{% block content %}
{# ALL PODCASTS #}
{% if podcasts|length > 0 %}
<div>
<section-title
class="mid-section-pb section-pt"
:data="{
type: 'main',
theme: 'light',
title: 'Podcasty',
image: '{{ asset('vue/icons/podcasty.svg', 'img') }}',
imageClass: 'w-17 lg:w-24'
}"
></section-title>
</div>
{{ block('all_podcasts_pattern_podcasts') }}
{# LATEST EPISODES #}
{% if episodes|length > 0 %}
<div>
<section-title
class="mid-section-pb section-pt"
:data="{
type: 'secondary',
theme: 'light',
title: 'Najnovšie epizódy',
image: '{{ asset('vue/icons/episodes.svg', 'img') }}',
imageClass: 'w-[30px] lg:w-[49px]'
}"
></section-title>
</div>
{% set showEpisodesImages = true %}
{% set podcastAjaxUrl = url('latestEpisodesApi') %}
{{ block('episodes_pattern_podcasts') }}
{% endif %}
{% endif %}
{% endblock %}