ADVERTISEMENT

POA launches archive of Olympians website

Published Jul 3, 2021 01:30 pm
Hidilyn Diaz (left) and Mansueto "Onyok" Velasco

The efforts and achievements of the country’s rare breed of athletes who carried the national colors in the Olympics will now be forever immortalized in digital form.

The Philippine Olympians Association has launched "The Living Archive of Olympians PH" website recently in a bid to relive the feats of all Filipino Olympians past and present during their respective journey to the world’s grandest spectacle in sports.

POA president Akiko Thomson-Guevara said the website www.philippineolympians.org intends to showcase a comprehensive database of all Filipino Olympians that can be searched alphabetically or by sport since the Philippines competed in the 1924 Paris Olympics.

"It’s a legacy project of the POA. We believe stories are powerful. But if they are not documented, not shared, these stories will be forgotten. By collating it and making it accessible to all, we will inspire the future generation of Olympians,’’ said Thomson-Guevara, a swimming ace during her prime who competed in three Olympics.

It will likewise include an archive of medalists, featured Olympians, the POA newsletter, general information, vision, purpose, board of directors, and the association’s affiliation with the World Olympians Association.

At present, there are 432 Filipino Olympians who saw action in both the Summer Games and the Winter Olympics (four athletes), including the 19 athletes from 11 sports who will compete in the coming Tokyo Games led by four-time Olympian and 2016 Rio De Janeiro silver medalist Hidilyn Diaz of weightlifting.

The project, which is the first website exhibiting all past and current Filipino Olympians, was made possible through the backing of the Philippine Olympic Committee and Milo, a reliable long-term supporter of Philippine sports.

"This is being done to establish greater awareness of our people that we have athletes who have gone to the Olympics. We stand in support of this project together with Milo Philippines, the most fitting partner in this endeavor,’’ said POC president and Rep. Abraham ``Bambol’’ Tolentino during the recent Olympic Day Celebration.

POA Chairman Rafael "Paing" Hechanova, one of the oldest living Olympians at 93 years old, graced the digital launch of www.philippineolympians.org along with POC deputy secretary general for NSA, government and athletes affairs Karen Caballero, POA treasurer Stephen Fernandez and POA board member Weena Lim. 

Joining them were Tokyo Olympian Kurt Barbosa of taekwondo and his coach Carlos Padilla and Milo Sports manager and Nestle Philippines AVP Lester Castillo.

"Having this program gives all of us hopes and role models to look up to, something we all need especially in these challenging times. Milo remains steadfast in its mission to build a nation of champions through its grassroots programs,’’ said Castillo.

"We’ve seen the journey of our Olympians, especially those who are going to this year’s pandemic Olympics. We can almost smell medals and we’re talking of not just one. It’s hard for everybody, but they soldiered on and here they are,’’ said Caballero.

According to Thomson-Guevara, the POA reached out to the Olympics Studies Center for the website’s existing database and would be updated as new Olympians and medalists come in.

"It’s a work in progress. Researchers had a hard time finding pictures of our Olympians and for some of our Olympians, the data is very sparse. We hope that as our website is viewed and shared, this will reach the relatives of Olympians who will help us with the information that we don’t have,’’ said Thomson-Guevara.

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.