ADVERTISEMENT

UNESCO to PH: 'Invest more' to achieve 'quality education for all'

Published Aug 7, 2019 11:22 pm
By Merlina Hernando-Malipot While the Philippines has been making “wonderful progress” on meeting Sustainable Development Goals (SDGs) – particularly SDG 4 or education – the United Nations Educational, Scientific and Cultural Organization (UNESCO) underscored the need to “invest more” to achieve “quality education for all.” UNESCO has added the Budj Bim Cultural Landscape in Australia to its World Heritage list (AFP Photo / MANILA BULLETIN) UNESCO (AFP Photo / MANILA BULLETIN) “The Philippines is making wonderful progress on SDGs – especially SDG number 4,” said UNESCO Jakarta Office Director and Representative Dr. Shahbaz Khan said in a recent press briefing. He added that the country is “doing a wonderful job” in terms of achieving certain SDGs standards. However, he noted that the country needs to “focus more on quality.” In September 2015, United Nations (UN) member states formally adopted the 2030 Agenda for Sustainable Development which contains 17 goals including a new global education goal or the SDG 4 which aims “to ensure inclusive and equitable quality education and promote lifelong learning opportunities for all.” Citing the 2019 UNESCO Global Education Monitoring (GEM) Report – which was launched in the country recently – Khan noted that data shows “very, very positive trends” when it comes to the Philippines and its efforts on achieving SDG 4. “Based on the comparative data, there’s positive progress,” Khan said. While enrollment and participation rates are “very good,” he noted that need to work on the quality of education. “We need to make sure that people are not left behind like the out-of-school youth and we have to work on the quality of education on the different levels,” he added. To help ensure that the Philippines stays on the “right track” when it comes to achieving education goals, Khan underscored the need for bigger and stronger investment in education. “Investment in education should be a top priority,” he said. Meanwhile, DepEd Assistant Secretary for Public Affairs and Alternative Learning System (ALS) G. H. Ambat assured that DepEd is now initiating more efforts when it comes to quality. “We are now pivoting from access to quality because we recognize that in the recent years, we have improved the access to our learners so that in June 2019, we have 27.2 million learners in our schools already, our participation rates, completion rates, and cohort survival rates have greatly improved,” she added. Despite all these, Ambat said that the DepEd recognizes “that there still those that are left behind.” Given this, she noted that DepEd has been “invigorating our support to our students – whether it is through school-based feeding program so that they stay in school.” She also noted that DepEd also tries to ensure that learners are healthy through its “OK sa DepEd” which is the agency’s health flagship program. “We have reinvigorated that ALS so that those who cannot come to formal school will still be able to get the quality education that will empower them to contribute to nation-building,” she added. When it comes to the other indicators of SDGs, Ambat said that DepEd – along with other agencies – are “all working towards that, making sure that our graduates will graduate with skills needed for the 21st century.” In the next three years, she noted that this administration “is intent on really achieving the targets that we have set.”
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.