ADVERTISEMENT

Slow Food Movement's biggest event launches in the Philippines, offers free series of food talks and other activities

Published Oct 9, 2020 09:00 am

Terra Madre Salone Del Gusto, the Slow Food Movement’s largest international event, officially kicked off in the Philippines last October 5. The six-month event program features an engaging calendar of events dedicated to good, clean, and fair food and small-scale agriculture around the world. 

Organized by Slow Food International, the City of Turin in Italy, and the Region of Piedmont in cooperation with MIPAAF (the Italian Ministry of Agricultural, Food and Forestry Policies) and MATTM (the Italian Ministry for Environment, Land and Sea Protection), the event revolves around the theme “Our Food. Our Planet. Our Future,” to unite the public against the climate and environmental crisis which affects every aspect of life while putting the spotlight on the massive role that food plays in society. 

“Food is important in preserving the life of our planet. The entire connection between and consumers, the local production, and knowing where food comes from is what we want to put into the center of our activities,” said Paolo Di Croce, the Secretary General of Slow Food International during the official launch video of the event aired on Slow Food Manila’s Facebook page. 

He added that with the COVID-19 pandemic, it highlighted the need for a community where people stick together and work together to come up with a solution on how to overcome adversities. 

“The concept of a community is the capability to share experiences, problems, resources, knowledge but also coming up with solutions focusing on the common good. This is the solution for the future. Food is a global network of local communities where several communities around the world are fighting for a better food system,” Di Croce said. 

Founded in 1989, Slow Food International is a global organization whose goal is to prevent the disappearance of local food cultures and traditions, and combat people’s dwindling interest in the food they eat among others. 

Calendar of events 

From October 2020 to April 2021, the worldwide event program offers both physical and digital activities which include voices, stories, and contributions from 160 countries worldwide. 

In the Philippines, Terra Madre focuses on the themes of food sovereignty, regenerative agriculture, and the need to support local communities.

A series of free online talks starting October 31st will be made available from 6PM onwards via live broadcast in Slow Food Negros’s Facebook page to discuss how the region applies Slow Food principles in their everyday lives to raise awareness on good, clean, and fair food available in the country. 

The schedule of events are as follows: 

October 31: Slow Food Negros Community, Slow Cheese and Slow Cacao.

November 7: Urban Gardening.

November 14: Philippine Native Trees.

November 21: Food from the Forest.

November 28: Food Biodiversity.

December 5: Philippine Coffee.

Meanwhile, other events such as talks and forums will also be available all around the world starting October 8. These activities will tackle climate and environment issues, sustainability, ideas for a better food system, and more. 

Terra Madre Salone Del Gusto will conclude with the Slow Food International Congress in April 2021. 

For more information and updates, visit Terra Madre Salone Del Gusto or Slow Food Manila on Facebook

Read more about farming and gardening at agriculture.com.ph.

Related Tags

slowfood terramadresalonedelgusto slowfoodmovement patriciataculao
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.