ADVERTISEMENT

QC vice mayor: Lacson - 'servant-leader' needed by the Filipino masses

Published Dec 6, 2021 10:59 am

Partido Reporma presidential aspirant Senator Panfilo “Ping” Lacson is the country’s only hope of getting a “servant leader” who will lead by example and dedicate himself in serving people with sincerity and utmost integrity.

Vice Mayor Giancarlo Sotto

Quezon City Vice Mayor Gian Carlo Sotto aired this view before stakeholders form the public transport industry in Quezon City even as he stressed that he is glad and proud that his father, Senate President Vicente “Tito” Sotto III, partnered with Lacson for the 2022 presidential elections.

Speaking on behalf of Mayor Joy Belmonte and other local government officials in the city, Vice Mayor Sotto said they consider Lacson one of their “idols” when ti comes to public service because of his “no-nonsense approach in leadership and strong resolve against corruption.” The young Sotto presides over the 36-member Sangguniang Panlungsod. He is running for re-election under Belmonte’s group.

“Nakita namin ang kanyang sakripisyo, dedikasyon at commitment para makatulong sa tao. Walang drama, walang politika, walang personalan—trabaho lang para sa kanya. (We all saw his sacrifices, dedication and commitment to serve the people. No drama, no personality politics, just pure service),” he said.

QC’s second highest local executive hoped that tricycle operators and driver’s associations (TODA), public transport cooperatives and transport network vehicle drivers who were at the meeting that they would not fall prey to politicians making false promises anew and promoting themselves on social media during the coming polls.

Vice Mayor Sotto said he is convinced that among other presidential aspirants, it is Lacson who is most primed for the highest leadership position in the national government because of his strategic plans of action to address the most pressing problems of our nation, including the COVID-19 pandemic.

“Marami tayong mga naririnig na mga paninira, mga fake news na kumakalat sa social media. Pero ako naniniwala ang mga brothers and sisters natin sa TODA, hindi magpapaloko at hindi basta-basta maniniwala sa mga paninira o fake news. (We have been hearing a lot of smear campaigns and fake news spreading across social media. But I believe that our brothers and sisters in TODA will not allow themselves to be fooled by them and will not believe these smear tactics and fake news.),” the vice mayor said.

Vice Mayor Sotto noted that the presidential duo of Lacson and Sotto distinguish themselves from other political tandems because they have always been ‘servant leaders’ and not ‘politicians’ throughout their long public service careers. Lacson and Sotto have been engaging various public transport groups for the past few weeks as they understood they are one of the hardest-hit sectors amid the ongoing public health crisis. They said it is the reason they have allocated funds for their assistance in the 2022 national budget.

The elder Sotto even mentioned that he would be proposing a “TODA Welfare Act,” which would look after the needs of public transport drivers and operators whose livelihoods were directly impacted by the pandemic that, in turn, slowed down the economy.

The Senate President and vice-presidential aspirant said he would discuss his proposed ‘TODA Welfare Bill’ with Lacson in their remaining sessions in the 18th Congress, as both senators have committed support to address the concerns of the public transport sector through legislation.

Should they fail to pass the bill on time, Sotto III said he trusts that Partido Reporma senatorial bets Dr. Minguita Padilla and retired General Guillermo Eleazar would keep pursuing the measure if and when they make it to the Senate next elections.

Related Tags

Senate President Vicente Tito Sotto III Senator Ping Lacson Partido Reporma 2022 presidential elections servant-leader Vice Mayor GianCarlo Sotto
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.