From a31bf08870a72abdda8cc4b4c0601b8be2c8cb27 Mon Sep 17 00:00:00 2001 From: Tilman Date: Fri, 30 Jun 2023 15:22:43 +0200 Subject: [PATCH] commit --- index.twig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.twig b/index.twig index 3d65e9c..5a924d3 100644 --- a/index.twig +++ b/index.twig @@ -188,6 +188,11 @@ // read podcast list fetch('{{ assets_url }}/podcasts.txt').then( + + console.log('{{ assets_url }}'); + console.log('{{ base_url }}'); + console.log('{{ url }}'); + function(response) { if (response.status !== 200) { console.log('Problem fetching podcast list. Status code: ' + response.status); @@ -195,8 +200,6 @@ } response.text().then(function(data) { - //console.log(data); - const podcastDiv = document.getElementById("podcast-list"); var lines = data.split('\n');