ADVERTISEMENT

They used mud to make art and help typhoon victims

Published Dec 5, 2020 11:15 am

Some parts of Rizal that got submerged in flood three weeks ago due to typhoon Ulysses are still covered in mud. If residents of these areas who find the gluey dirt filthy, best friends Banjo Magnaye and Arnold Gonzales, on the other hand, found inspiration from the mud to help typhoon victims.

Aboard a motorcycle, Banjo and Arnold went to Barangay Kasiglaha, Rodriguez, Rizal from their hometown of Lipa City, Batangas to do mud painting for a cause. Banjo, an interior design graduate in Batangas State University, painted two landscapes on a special illustration board using mud they collected from the area. 

For the first drawing, he went to the top of the breakwater at the corner of the barangay and the Marikina river to paint a coved perspective of the devastated village. The second one, done on the riverbanks, can camouflage on the panoramic view of the Marikina river, which overflowed during the storm.    

A mud painting of the village showing the aftermath of the typhoon
The river painting camouflages on Marikina River

They then framed the artworks and coated them with fixative so it would last. Multimedia personality Christine Bersola-Babao was the first one to support their project by acquiring the river painting. The village artwork is now up for bidding to fund their charity drive. 

“It felt so heavy while I was painting because I could still feel the hardships that they went through, which in a way pushed us more to pursue the project,” Banjo says. “After we sell the artworks, we’ll go back there, buy some goods for the relief packs we will give away, and we will also cook some breakfast for the residents.”

According to Banjo, one of the challenges of mud painting is adding more detail to the image, because mud easily spreads after it dries. Producing dark tones is also difficult, which is why he has to thicken the application of the wet soil. This, amazingly, also gave it a finer texture. 

The texture formed by the mud highlights the intricacy of his hand strokes. And the clay’s ochre color created dramatic silhouettes depicting the melancholic emotions of the place. This on-the-spot painting turned out to be such a beautiful piece, good not just as an accent to a wall but also as a story worth sharing.

Banjo Magnaye and Arnold Gonzales in action for a cause

Banjo and Arnold are content producers on YouTube. Their channel TAOBA (The Adventures of Banj and Arn) is about travel and arts. They’ve already gone as far as Baguio and Pangasinan from their hometown just by riding a motorcycle. And one of the highlights of their videos is plein air painting popular scenic landscapes of their destinations.   

In all of their videos, after exploring and painting the countryside’s beauty, they leave one message that paints hope and faith during these challenging times: “Mahirap man ang lakbayin, matatapos din! Why? Because God is with us!”

You can visit their Facebook page to know how you can support their mud painting for a cause.

Related Tags

Typhoon Ulysses painting for a cause Arnold Gonzales mud painting plein air painting Banjo Magnaye Rodriguez Rizal Noel Pabalate
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.