
España venció a la anfitriona Turquía con el último marcador 68-61 (22-14, 14-17, 15-8, 22-17) para reclamar un segundo Campeonato de Europa Sub-18 consecutivo en una revancha de la final de 2019.
Rafael Villa encestó un triple clave, luego encestó dos tiros libres en la siguiente posesión para darle a España una ventaja de 10 puntos (65-55) con 52 segundos por jugarse en el último cuarto.
España se adelantó en el minuto cinco del primer cuarto y lideró durante todo el partido.
España ganaba por 14 puntos (49-35) tras una bandeja de Martín Iglesias a falta de 1:04 para el final del tercer cuarto.
Con 2:43 por jugar en el último cuarto, Turquía luchó para reducir su déficit a 5 puntos (56-51), pero no pudo acercarse más en los minutos finales.
Por España, Rafael Villar tuvo 20 puntos (3/4 2 PT, 3/4 3PT, 5/8 FT), 5 asistencias, 4 robos, 3 rebotes y 1 taponamiento.
Turquía fue liderada por Ozgur Cengiz, quien terminó con 12 puntos (3/3 2 PT, 2/5 3PT, 0/2 FT), 5 asistencias y 2 robos.
España Sub-18: Rafael Villar 20 (5 AST), Isan Almanza 14 (15 REB), Nicholas Seprian 8, Ab Sedic Karuba 7 (5 REB);
Turquía U18: Ozgur Cengiz 12 (5 AST), Kerem Konan 10 (5 REB), Eray Buyukcangaz 10, Hamza Mestoglu 9, Berke Buyuktuncel 8 (7 REB).
let fbRefUrl;
// This is called with the results from from FB.getLoginStatus().
function statusChangeCallback(response) {
if (response.status === 'connected') {
//we still need additional permissions
FB.login(function (response) {
$.post("/?module=users&action=facebookLogin&ajax=1", { token : response.authResponse.accessToken}, function(data){
data = JSON.parse(data);
if (data.success === true) {
registerAuthEvent('login');
registerMarfeelUserType(data);
if (fbRefUrl) {
window.location.replace(fbRefUrl);
} else {
location.reload();
}
} else {
if (data.messages && data.messages.error) {
$('.form_error_message').html(data.messages.error);
$('.form_error_message').show();
}
}
});
}, {scope: 'email,public_profile'});
} else {
FB.login(function(response) {
if (response.authResponse) {
$.post("/?module=users&action=facebookLogin&ajax=1", { token : response.authResponse.accessToken}, function(data){
data = JSON.parse(data);
registerMarfeelUserType(data);
if (data.success === true) {
registerAuthEvent('login');
if (fbRefUrl) {
window.location.replace(fbRefUrl);
} else {
location.reload();
}
} else {
if (data.messages && data.messages.error) {
$('.form_error_message').html(data.messages.error);
$('.form_error_message').show();
}
}
});
}
}, {scope: 'email,public_profile'});
}
}
// This function is called when someone finishes with the Login
// Button. See the onlogin handler attached to it in the sample
// code below.
function loginFb(element) {
fbRefUrl = $(element).closest("form").find("input[name="ref_url"]").val();
$('.form_error_message').hide();
FB.getLoginStatus(function(response) {
statusChangeCallback(response);
});
}
window.fbAsyncInit = function() {
FB.init({
appId : '680880005306640',
cookie : true,
xfbml : true,
version : 'v11.0'
});
};
// Load the SDK asynchronously
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));