The EWE Baskets Oldenburg are strengthening with Ralph Hounnou. The 23-year-old already knows coach Predrag Krunic from his time in Weißenfels.
To read this article, complete one of our offers or log in as a subscriber. All content on NWZONLINE and in the NWZ messages app are then fully available.
Oldenburg – The EWE Baskets have announced the third access on the German positons. As the basketball Bundesliga club announced on Tuesday, Ralph Hounnou moved from Zunutliga club Phoenix Hagen to Oldenburg. The 23-year-old shooting guard receives a contract for the coming season at the Baskets.
“Ralph is a young player with experience with the ProB, ProA and the BBL. He is a player with a very solid litter, a good defense that is able to play with a high level of intensity and in the transition”, coach Predrag Krunic describes the Guard, who was born in Benin (West Africa) and grew up in Berlin and Weißenfels. He played 27 Bundesliga games for the MBC Weißenfels between 2022 and 2024. From this time, Hounnou also knows Oldenburg’s new coach Krunic, who has been training the Baskets for the second time this summer. Under the 2009 master coach, the Guard played 24 first division games in the 2023/24 season. Then Krunic moved to Japan, Hounnou moved to Hagen.
“I am very happy to be part of this great organization. I know that many have not expected this change, but I will give everything to meet the standards of this club and that with a lot of heart and energy,” Hounnou is quoted.
In the German positions, the Bundesliga club has already signed wing players Nicholas Tischler from the Niners Chemnitz (24) and Center Filip Stanic (27) from the Bamberg Baskets. Last week, the Oldenburgers also announced the transfer of the American Guard Tevin Olison (26) from Finland.
Here’s an analysis of the provided HTML snippets,focusing on their structure and content:
1. Overall Structure (Likely a News Article Teaser List):
The code represents sections designed to present summaries (teasers) of news articles. the section elements wiht classes like teaser-list-small and gdl-teaser indicate this.
The use of flex column suggests a flexible layout where the content is arranged in a column for each teaser.
The data-articleid attributes link each teaser to a specific article, probably used for tracking and linking within the website’s system.
2.Image Handling:
picture Element with source and img: This is the core of responsive image handling. The picture tag allows the browser to select the most appropriate image source based on the user’s device and screen size.
source elements: Each source element specifies different image versions using media queries (media attribute) and the path to the image file (srcset). this allows the browser to select an image optimized for the user’s screen (e.g.,different resolutions for mobile,tablets,and desktops). The srcset attribute uses a pattern like this: imagepath/width,aspect-ratio,quality,otherattributes/imagename.webp
img element: The img element provides a fallback image and is also used when no source matches the user’s criteria. It also has the loading="lazy" attribute for efficient loading.
Image Optimization: The image URLs are highly optimized, as is typical in modern web advancement. They include:
Different image sizes for different screen widths.
different aspect ratios to fit different sections.
WebP format webp for efficient encoding
low quality setting to save bandwidth
3. Headline and Teaser Content:
header element: Contains the headline of the article teaser.
h4 element: This is the main headline. The use of classes like font-work-bold, text-uc (uppercase), ls:1 (letter spacing), and block indicate styling for the headline.
span class="catchword": These can be catch phrases or short introduction sentences for the actual headlines, that would be an auxiliary headline
: This looks like a “bookmark” or “favorite” button, probably for saving the article. The attributes data-tooltip,data-trigger,and data-id are likely used for the button’s behavior and tracking.
4. General Styling/Classes:
The code makes heavy use of CSS classes:
font-abc-bold, font-abc these are likely for font families
text-blue for text color
fs:XX probably for font-size
lh:1/4 for line-height
block, flex, column for layout
sm:ar-1/1, md:ar-1/1, lg:ar-4/3 – used for aspect ratios on different screen sizes
relative, absolute for positioning
Teaser Structure: Each teaser generally contains an image, a headline.
5. JavaScript Interactivity
Based on the attributes, there is also javascript attached to that element.
The Bookmark button has the attributes data-tooltip="fav01" data-trigger="bookmarks"
There’s a data-obs-trigger="lookForAffectedElements" on a bookmark button
the code is for generating responsive news or article teasers with optimized images, semantic HTML, and using CSS classes for styling and layout.
