There is always a risk in the 16 sterrato sections, almost 80 km of the total. And yet, the great scare for Tadej Pogacar was on a stretch of road, of good asphalt, in a descent in the led the race with Pidcock and Swift. In a curve on the left he skated his wheel and the Slovenian went to the ground. In addition to the hard blow on the left side, he slipped and left the road, ended up falling on some brambles. When he joined, after giving a couple of turns, the rainbow jersey was a chrome. The peeled and burned shoulder, the torn culotte, blood in the left knee and the arm. 50 km were missing and he had been asked for. Another would have preferred to be conservative, throw in the towel and think of future conquests. But Pogacar, with the adrenaline in the air, changed bike, took off his gloves and went for the British of Q36.5, winner at this beginning of the course of the tour of Tour and in Torredelcampo. 50 km trade curve The Strade Bianche has a lot of danger in the white, land and without asphalting roads but Pogacar went to the ground on a road with very good peak -four kilometers later he had already caught it. As if it were bread. From that moment on, there were only two possibilities: double for Pidcock after its victory in 2023 or triplet to Pogacar in Siena, where it had already been first in 2022 and in 2024. The Slovenian, which last year went alone at 80 km target, then dedicated himself to lowering pulsations, calming himself, evaluating his damage and preparing the great attack. Maybe Pidcock imagined that you could wait for the steep via Santa Caterina. But there were Colle Pinzuto and Le Tolfe, two hills without asphalting. And the UAE leader did not miss them. In the first, in the absence of 19 km, he launched the announced demarcation. I didn’t want surprises or more scares. He was not going to play it at the end. Do not leave for later what you can do now. Pidcock, earthly human, grabbed while he could, which was not much, and saw him leave with that infernal rhythm that has burned so many. This time he didn’t even have to get up from the armchair. Pure power. Pioneer for the first time in the 19 editions, the classic Tuscan was won by the world champion with the arc jaw írisni even when he is wrong, he loses. Nor their mistakes can stop him. “It has been a speed failure because I know the road. Maybe I have underestimated the curve, ”he acknowledged. For the first time in the 19 editions of the Tuscan test, the world champion won and to celebrate it, Pogacar toured with his arms high the last 100 meters until he reached Il Campo de Siena. “I have enjoyed, when I crossed the goal I have begun to notice the pain,” he said, with dust to my eyebrows. With 26 years, the Slovenian has already become the record man of the race, with three wins, the same as Fabian Cancellara. The Swiss saw him pass on the road. The pattern of the Tudor team was delivering drives to its runners. In the female test Vollering surpasses Van der Breggen again as in Gandía, in Siena. The second great duel between Demi Vollering, the apprentice, and Anna Van Der Brenggen, the teacher, fell on the young woman’s side. Vollering, now at the FDJ, won his second Strade Bianche after 2023, ahead of the one that until last season was his director in the SD Worx, who has run again at age 34. The two Dutch arrived together at the Holy Caterina via, hand in hand. And on the hard ramps, 500 meters, Vollering attacked and imposed its superiority in the climb to leave Van Der Brenggen behind, which also sought double after having won in 2018 before its withdrawal.
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();