generated from extratone/latte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html@p=854.html
446 lines (390 loc) · 32 KB
/
index.html@p=854.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" sizes="192x192" href="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/icons/apple-touch-icon.png?x65095">
<link rel="shortcut icon" href="https://d38jnz52bk9bao.cloudfront.net/favicon.ico?x65095">
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
let showMoreLink = document.getElementById('showMoreLink');
if (showMoreLink) {
document.getElementById('showMoreLink').addEventListener('click', fetchMoreBlogPosts);
}
});
function fetchMoreBlogPosts (e) {
e.preventDefault();
e.currentTarget.classList.add('disabled');
e.currentTarget.disabled = true;
setTimeout(function(){
let button = document.getElementById("showMoreLink");
if( button !== null ) {
button.classList.remove("disabled");
button.disabled = false;
}
}, 1000);
let timesFetched = parseInt(e.target.dataset.timesFetched);
let postID = '854';
targetURL = '';
let showMoreLink = document.getElementById('showMoreLink');
if (showMoreLink.classList.contains('single-more')) {
targetURL = 'https://lemansvirtual.com/wp-admin/admin-ajax.php?action=fetch_single_blog_posts';
} else {
targetURL = 'https://lemansvirtual.com/wp-admin/admin-ajax.php?action=fetch_blog_posts';
}
targetURL += `&requestedFrom=${postID}`;
if ( timesFetched > 0 ) targetURL += `×Fetched=${timesFetched}`;
let xhr = new XMLHttpRequest();
xhr.onload = function(a){
if(this.status === 200) {
let data = JSON.parse(this.responseText);
if(data.length > 0) {
buildNewBlogPostsRow(data);
}
let button = document.getElementById('showMoreLink');
button.dataset.timesFetched = parseInt(button.dataset.timesFetched) + 1;
let $postLength;
if (showMoreLink.classList.contains('single-more')) {
$postLength = 2;
} else {
$postLength = 7;
}
if (data.length < $postLength) {
document.getElementById('showMoreLink').remove();
}
} else {
console.log("AJAX error when fetching Case Studies: " + this.status);
}
};
xhr.open("POST", targetURL);
xhr.send();
}
function buildNewBlogPostsRow (data) {
data.forEach(function(post){
// Build the elements
let article = document.createElement('article');
article.classList.add('post');
let row = document.createElement('div');
row.classList.add('inner-row');
// Thumbnail
let column1 = document.createElement('div');
column1.classList.add('column-2');
let imagePermalink = document.createElement('a');
imagePermalink.classList.add('post-thumbnail');
imagePermalink.href = post.permalink;
let image = document.createElement('img');
image.className = 'attachment-post-thumbnail size-post-thumbnail wp-post-image';
image.src = post.thumbnail;
// Content
let column2 = document.createElement('div');
column2.classList.add('column-2');
let header = document.createElement('header');
header.classList.add('entry-header');
let entryMeta = document.createElement('div');
entryMeta.classList.add('entry-meta');
let author = document.createElement('div');
author.classList.add('post-author');
author.textContent = post.author;
let date = document.createElement('div');
date.textContent = post.date;
let title = document.createElement('h3');
title.classList.add('entry-title');
title.textContent = post.title;
let titlePermalink = document.createElement('a');
titlePermalink.href = post.permalink;
let content = document.createElement('div');
content.classList.add('entry-content');
let contentExcerpt = post.content;
let Excerpt = contentExcerpt.substr(0, 104);
content.textContent = Excerpt + '...';
let readmore = document.createElement('a');
readmore.classList.add('readmore');
readmore.href = post.permalink;
readmore.textContent = 'Read more...';
// Arrange into a single element
article.appendChild(row);
row.appendChild(column1);
column1.appendChild(imagePermalink);
imagePermalink.appendChild(image);
row.appendChild(column2);
column2.appendChild(header);
header.appendChild(entryMeta);
entryMeta.appendChild(author);
entryMeta.appendChild(date);
header.appendChild(titlePermalink);
titlePermalink.appendChild(title);
column2.appendChild(content);
column2.appendChild(readmore);
document.querySelector('.blog-container').appendChild(article);
});
}
</script>
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<!-- This site is optimized with the Yoast SEO plugin v17.6 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Rebellion GPX Esports races to victory at the Le Mans Virtual Series’ 500 Miles of Sebring - Le Mans Virtual Series</title>
<link rel="canonical" href="index.html@p=854.html" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Rebellion GPX Esports races to victory at the Le Mans Virtual Series’ 500 Miles of Sebring - Le Mans Virtual Series" />
<meta property="og:description" content="The 500 Miles of Sebring, the fourth and penultimate round in the 2021-2022 Le Mans Virtual Series, came to a […]" />
<meta property="og:url" content="https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/" />
<meta property="og:site_name" content="Le Mans Virtual Series" />
<meta property="article:publisher" content="https://www.facebook.com/lemansvirtual" />
<meta property="article:published_time" content="2021-12-18T22:07:25+00:00" />
<meta property="og:image" content="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/365960_20211216184444_1-Modifica.jpg?x65095" />
<meta property="og:image:width" content="1920" />
<meta property="og:image:height" content="1080" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@lemansvirtual" />
<meta name="twitter:site" content="@lemansvirtual" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Jack Gosling" />
<meta name="twitter:label2" content="Estimated reading time" />
<meta name="twitter:data2" content="2 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://lemansvirtual.com/#organization","name":"Le Mans Virtual","url":"https://lemansvirtual.com/","sameAs":["https://www.facebook.com/lemansvirtual","https://www.instagram.com/lemansvirtual/","https://www.youtube.com/traxiongg","https://twitter.com/lemansvirtual"],"logo":{"@type":"ImageObject","@id":"https://lemansvirtual.com/#logo","inLanguage":"en-GB","url":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/08/cover-1.png?x65095","contentUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/08/cover-1.png?x65095","width":1920,"height":1080,"caption":"Le Mans Virtual"},"image":{"@id":"https://lemansvirtual.com/#logo"}},{"@type":"WebSite","@id":"https://lemansvirtual.com/#website","url":"https://lemansvirtual.com/","name":"Le Mans Virtual Series","description":"","publisher":{"@id":"https://lemansvirtual.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://lemansvirtual.com/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"ImageObject","@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#primaryimage","inLanguage":"en-GB","url":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/365960_20211216184444_1-Modifica.jpg?x65095","contentUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/365960_20211216184444_1-Modifica.jpg?x65095","width":1920,"height":1080},{"@type":"WebPage","@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#webpage","url":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/","name":"Rebellion GPX Esports races to victory at the Le Mans Virtual Series\u2019 500 Miles of Sebring - Le Mans Virtual Series","isPartOf":{"@id":"https://lemansvirtual.com/#website"},"primaryImageOfPage":{"@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#primaryimage"},"datePublished":"2021-12-18T22:07:25+00:00","dateModified":"2021-12-18T22:07:25+00:00","breadcrumb":{"@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/"]}]},{"@type":"BreadcrumbList","@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://lemansvirtual.com/"},{"@type":"ListItem","position":2,"name":"Rebellion GPX Esports races to victory at the Le Mans Virtual Series\u2019 500 Miles of Sebring"}]},{"@type":"Article","@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#article","isPartOf":{"@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#webpage"},"author":{"@id":"https://lemansvirtual.com/#/schema/person/b9bda3789612ad1bbbcdadc12e407b3b"},"headline":"Rebellion GPX Esports races to victory at the Le Mans Virtual Series\u2019 500 Miles of Sebring","datePublished":"2021-12-18T22:07:25+00:00","dateModified":"2021-12-18T22:07:25+00:00","mainEntityOfPage":{"@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#webpage"},"wordCount":468,"publisher":{"@id":"https://lemansvirtual.com/#organization"},"image":{"@id":"https://lemansvirtual.com/rebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring/#primaryimage"},"thumbnailUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/365960_20211216184444_1-Modifica.jpg?x65095","inLanguage":"en-GB"},{"@type":"Person","@id":"https://lemansvirtual.com/#/schema/person/b9bda3789612ad1bbbcdadc12e407b3b","name":"Jack Gosling","image":{"@type":"ImageObject","@id":"https://lemansvirtual.com/#personlogo","inLanguage":"en-GB","url":"https://secure.gravatar.com/avatar/1191a8427c034a055362b611c05e3e6b?s=96&d=mm&r=g","contentUrl":"https://secure.gravatar.com/avatar/1191a8427c034a055362b611c05e3e6b?s=96&d=mm&r=g","caption":"Jack Gosling"},"url":"https://lemansvirtual.com/author/jackgosling/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='stylesheet' id='lemans-leaderboard-css' href='wp-content/plugins/nn-lemans-leaderboard/assets/leaderboard.css@x65095&22_11&ver=5.8.3.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-includes/css/dist/block-library/style.min.css?x65095&ver=5.8.3' type='text/css' media='all' />
<link rel='stylesheet' id='trp-floater-language-switcher-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/css/trp-floater-language-switcher.css?x65095&ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='trp-language-switcher-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/css/trp-language-switcher.css?x65095&ver=2.1.6' type='text/css' media='all' />
<link rel='stylesheet' id='le-mans-style-css' href='https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/css/style.min.css?x65095&ver=07122021' type='text/css' media='all' />
<link rel="https://api.w.org/" href="wp-json/index.html" /><link rel="alternate" type="application/json" href="wp-json/wp/v2/posts/854" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc.php@rsd" />
<meta name="generator" content="WordPress 5.8.3" />
<link rel='shortlink' href='index.html@p=854.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Frebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring%252F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Frebellion-gpx-esports-races-to-victory-at-the-le-mans-virtual-series-500-miles-of-sebring%252F&format=xml" />
<script type="text/javascript" src="https://app.termly.io/embed.min.js" data-auto-block="on" data-website-uuid="509f7268-6328-417d-b978-40f9beeebc1a" ></script>
<meta name="facebook-domain-verification" content="k6puvy7nt0ccweh9zm328mzle3svra" /><link rel="alternate" hreflang="en-GB" href="index.html@p=854.html"/>
<link rel="alternate" hreflang="en" href="index.html@p=854.html"/>
<link rel="alternate" hreflang="fr-FR" href="fr/index.html@p=854.html"/>
<link rel="alternate" hreflang="fr" href="fr/index.html@p=854.html"/>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5FC3B4F');</script>
<!-- End Google Tag Manager -->
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style></head>
<body class="post-template-default single single-post postid-854 single-format-standard translatepress-en_GB lemans-yellow">
<div class="background">
<picture>
<source srcset="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern@2x.png?x65095" media="(min-width: 1921px)" />
<source srcset="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern.png?x65095" media="(max-width: 1920px)" />
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans-child/dist/images/pattern.png?x65095" />
</picture>
</div>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="index.html@p=854.html#primary">Skip to content</a>
<header id="masthead" class="site-header">
<div class="header-container container">
<div class="row">
<div class="column">
<a class="primary-logo" href="../www.lemansvirtual.com/index.html"><img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/yellow/lmvs.svg?x65095" alt="Le Mans Home"></a>
<div class="next-race" role="complementary">
<div><div class="widget-title">Next Race:</div><div class="textwidget custom-html-widget">15 January 2022</div></div> </div><!-- .next-race -->
<div id="countdown" class="countdown">
<div id="countdown-timer" class="countdown-timer"></div>
</div>
</div>
<div class="column header-buttons">
<a href="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact" target="_blank" rel="noopener noreferrer"
id="signup-data"
class="custom-button header-contact header-contact-desktop"
data-modal-enabled="1"
data-cta-url="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact"
data-modal-heading="Join the Le Mans Virtual mailing list"
data-modal-text-paragraph="Subscribe to the Le Mans newsletter to receive the latest news and reminders for every live event in the calendar"
data-modal-signup-text="Sign up here"
>
<span>JOIN MAILING LIST</span>
</a>
</div>
</div>
</div>
<div class="header-navigation">
<div class="container">
<button class="menu-toggle" id="menu-toggle" aria-controls="primary-menu" aria-expanded="false"></button>
</div>
<nav id="site-navigation" class="main-navigation">
<div class="container">
<div class="row">
<div class="column">
<div class="menu-navigation-container"><ul id="primary-menu" class="menu"><li id="menu-item-356" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-356"><a href="index.html@p=337.html">Meet the Teams</a></li>
<li id="menu-item-357" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-357"><a href="index.html@p=335.html">News</a></li>
<li id="menu-item-703" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-703"><a href="index.html@p=680.html">Videos</a></li>
<li id="menu-item-487" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-487"><a href="index.html@p=472.html">FAQs</a></li>
<li id="menu-item-509" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-509"><a href="index.html@p=447.html">Race Calendar</a></li>
<li id="menu-item-799" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-799"><a href="index.html@p=435.html">Results</a></li>
</ul></div> </div>
<div class="column social-navigation">
<span>Follow Us</span>
<div class="menu-social-media-container"><ul id="social-menu" class="menu"><li id="menu-item-16" class="menu-twitter menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/lemansvirtual">Twitter</a></li>
<li id="menu-item-17" class="menu-facebook menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/lemansvirtual">Facebook</a></li>
<li id="menu-item-18" class="menu-instagram menu-item menu-item-type-custom menu-item-object-custom menu-item-18"><a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/lemansvirtual/">Instagram</a></li>
<li id="menu-item-19" class="menu-youtube menu-item menu-item-type-custom menu-item-object-custom menu-item-19"><a target="_blank" rel="noopener noreferrer" href="https://www.youtube.com/traxiongg">YouTube</a></li>
<li id="menu-item-20" class="menu-twitch menu-item menu-item-type-custom menu-item-object-custom menu-item-20"><a target="_blank" rel="noopener noreferrer" href="https://www.twitch.tv/traxiongg">Twitch</a></li>
</ul></div> </div>
</div>
<a id="signup-cta" href="http://email.motorsportgames.com/public/webform/render_form/3bgh5qw0z0yg4imw1fwx2ll3duxsp/d942e6f2c695332d927ef49a6d2be80d/addcontact" target="_blank" rel="noopener noreferrer" class="custom-button"><span>JOIN MAILING LIST</span></a>
</div>
</nav><!-- .desktop-navigation -->
</div>
</header><!-- #masthead -->
<section class="blog-post leaderboard">
<div class="container">
<div class="inner-row">
<h1 class="large-heading" id="">Rebellion GPX Esports races to victory at the Le Mans Virtual Series’ 500 Miles of Sebring</h1>
<h2 class="small-heading"><span class="posted-on">Posted on <time class="entry-date published updated" datetime="2021-12-18T22:07:25+00:00">18 December 2021</time></span></h2>
</div><!-- .inner-row -->
</div><!-- .container -->
</section><!-- .meet-the-teams -->
<main id="primary" class="site-main">
<div class="container">
<div class="inner-row">
<article id="post-854" class="post-854 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorised">
<div class="post-thumbnail">
<img width="1920" height="1080" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/365960_20211216184444_1-Modifica.jpg?x65095" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" /> </div><!-- .post-thumbnail -->
<div class="entry-content">
<p>The 500 Miles of Sebring, the fourth and penultimate round in the 2021-2022 Le Mans Virtual Series, came to a pulse-racing conclusion as <strong>#1</strong> <strong>Rebellion GPX Esports</strong> and <strong>Augustin Canapino, Nikodem Wisniewski </strong>and <strong>Kuba Brzeszinski</strong> topped the podium at the legendary Sebring International Raceway in Florida, United States. In second and third places were <strong>#8 R8G ESPORTS</strong> and <strong>#70 Realteam Hydrogen Redline</strong>.</p>
<p><strong>Rudy van Buren, Kevin Siggy and Enzo Bonito from #71 BMW Team Redline </strong>took first place in the LMGTE category after an intriguing strategic battle with <strong>#91 Porsche Esports Team</strong> over the 6km / 3.7 mile long track.</p>
<p>The results mean an incredible finale awaits at the 24 Hours of Le Mans Virtual on January 15/16. In the LMP2 Classification, the <strong>#4 Floyd ByKolles-Burst</strong> now leads the <strong>#123 Team Redline</strong> by just half a point, while Sebring winners <strong>#1 Rebellion GPX Esports</strong> now sit a mere four points off top. With so little between the top teams, the stage is set for a three-way winner-takes-all battle for championship honours at Le Mans.</p>
<p><img loading="lazy" class="alignnone size-full wp-image-840" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/365960_20211218125740_1-scaled.jpg?x65095" alt="" width="2560" height="1440" /></p>
<p>Over in the LMGTE, the <strong>#28 BMW Team Redline</strong> has extended its championship lead to 77 points, with the <strong>#91 Porsche Esports Team</strong> further behind in second place with 65.5 points.</p>
<p>Yet with double points up for grabs at the 24 Hours of Le Mans in January – across both classifications – there is so much still to drive for going into the biggest virtual endurance racing event on January 15/16 for the 24 Hours of Le Mans.</p>
<p>A gripping contest throughout on the infamously bump-filled layout, the event at Sebring featured:</p>
<ul>
<li>A thrilling action-packed battle for the podium in LMP, with <strong>#1 Rebellion GPX Esports</strong>, <strong>#8 R8G Esports</strong>, <strong>#70 Realteam Hydrogen Redline</strong> and the <strong>#4 Floyd ByKolles-Burst</strong> clashing throughout the race.</li>
<li>Intense drama atop the championship rankings as the <strong>#123 Team Redline</strong> received a drive-through penalty and dropped down the standings for causing a collision with the <strong>#888 TESLA R8G Esports</strong> GTE, before mounting an impressive comeback.</li>
<li>A strategic masterclass in LMGTE, which saw <strong>#91 Porsche Esports Team</strong> slip through into an early lead above the championship-leading <strong>#71 BMW Team Redline M8</strong>, but an incredible pit stop strategy and a brilliant drive from Porsche’s<strong> Enzo Bonito</strong> created a tense battle that saw them top the podium.</li>
<li><strong>Isaac Gillissen</strong> in the <strong>#49 YAS Heat</strong> recorded the fastest lap time at 1:45.341</li>
</ul>
<p><img loading="lazy" class="alignnone size-full wp-image-839" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/365960_20211218140811_1-scaled.jpg?x65095" alt="" width="2560" height="1600" /></p>
<p>After the race, <strong>Augustin Canapino</strong> from <strong>GPX Rebellion Williams</strong> said: “It was a great job from everyone on the team and I enjoyed every lap of the race. It was a great drive from Niko [Wisniewski] to finish so strongly and now the car is in a really good position to fight for the championship in the final round.</p>
<p>Sebring presented the final challenge to teams and drivers before the<strong> 24 Hours of Le Mans Virtual race, which will be held entirely online on January 15/16, 2022.</strong></p>
</div><!-- .entry-content -->
</article><!-- #post-854 -->
</div>
</div>
</main><!-- #main -->
<!-- Partners -->
<div class="partners">
<div class="container">
<h2 class="large-heading">Our Partners</h2>
<div class="partner-logos">
<div class="inner-row">
<div class="column-row">
<div class="partner-logo">
<a href="https://www.goodyear.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/Goodyear_Logo-3.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Tyre Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.thrustmaster.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/Thrustmaster-logo-4.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Hardware Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.algorand.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/algorand_full_logo_white.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Blockchain Partner</div>
</div>
<div class="partner-logo">
<a href="https://totalenergies.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/TotalEnergies_Logo_RGB-2.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Energy Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.lego.com/en-gb/themes/technic" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/lego_technic_logo.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Engineering Partner</div>
</div>
<div class="partner-logo">
<a href="https://www.rolex.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/12/ROLEX_2012_CMYK_WHITE-GOLD.png?x65095" alt="" loading="lazy"
width="300" height="59">
</a>
<div class="partner-text">Official Timepiece Partner</div>
</div>
</div><!-- .column-row -->
</div><!-- .inner-row -->
</div><!-- .partner-logos -->
</div><!-- .container -->
</div><!-- .partners -->
<footer id="colophon" class="site-footer">
<div class="container">
<div class="footer-logos">
<a href="https://motorsportgames.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/MotorsportGames.svg?x65095" alt="Motorsport Games" loading="lazy">
</a>
<a href="https://www.fiawec.com/" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/WEC.svg?x65095" alt="WEC" loading="lazy">
</a>
<a href="https://www.24h-lemans.com/en" target="_blank" rel="noopener noreferrer">
<img src="https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/images/partners/LeMans.svg?x65095" alt="LeMans" loading="lazy">
</a>
</div>
<div class="footer-links">
<a href="https://motorsportgames.com/privacy-policy/" target="_blank" rel="noopener noreferrer">Privacy Policy</a>
<a href="https://motorsportgames.com/terms-conditions/" target="_blank" rel="noopener noreferrer">Terms & Conditions</a>
<a href="https://motorsportgames.com/cookie-policy/" target="_blank" rel="noopener noreferrer">Cookie Policy</a>
<a href="https://app.termly.io/notify/f80da7c5-3b23-41a1-af0c-abb631d54209" target="_blank" rel="noopener noreferrer">Do Not Sell My Info</a>
</div>
</div><!-- .container -->
</footer><!-- #colophon -->
</div><!-- #page -->
<div id="trp-floater-ls" onclick="" data-no-translation class="trp-language-switcher-container trp-floater-ls-names trp-bottom-right trp-color-dark" >
<div id="trp-floater-ls-current-language" class="trp-with-flags">
<a href="index.html@p=854.html#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()">
<img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_GB.png?x65095" width="18" height="12" alt="en_GB" title="English">English </a>
</div>
<div id="trp-floater-ls-language-list" class="trp-with-flags" >
<div class="trp-language-wrap"> <a href="fr/index.html@p=854.html"
title="French">
<img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/fr_FR.png?x65095" width="18" height="12" alt="fr_FR" title="French">French </a>
<a href="index.html@p=854.html#" class="trp-floater-ls-disabled-language trp-ls-disabled-language" onclick="event.preventDefault()"><img class="trp-flag-image" src="https://d38jnz52bk9bao.cloudfront.net/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_GB.png?x65095" width="18" height="12" alt="en_GB" title="English">English</a></div> </div>
</div>
<script>
window.addEventListener('load', function () {
let language = document.body.classList.contains('translatepress-fr_FR') ? 'FR' : 'en'; // Other EN configurations require uppercase
let iframe = '';
if (window.innerWidth > 900) {
iframe = `<iframe src="https://static.rolex.com/clocks/2021/lemans_virtual_desk_${language}_HTML_320x100/rolex.html" ` +
`style="min-width:340px;height:100px;border:0;margin:0;padding:0;overflow:hidden;scroll:none" SCROLLING=NO frameborder="NO"></iframe>`;
} else {
language = language.toUpperCase();
iframe = `<iframe src="https://static.rolex.com/clocks/2021/lemans_virtual_mobile_${language}_HTML_320x70/rolex.html"` +
`style="min-width: 320px;width:100%;height:70px;border:0;margin:0;padding:0;overflow:hidden;scroll:none" SCROLLING=NO frameborder="NO"></iframe>`;
}
document.getElementById("countdown").innerHTML = iframe;
});
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5FC3B4F"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<script type='text/javascript' src='wp-content/plugins/nn-lemans-leaderboard/assets/leaderboard.js@x65095&22_11&ver=5.8.3' id='lemans-leaderboard-js'></script>
<script type='text/javascript' src='https://d38jnz52bk9bao.cloudfront.net/wp-content/themes/le-mans/dist/js/script.min.js?x65095&ver=11112021' id='project-n-script-js'></script>
</body>
</html>
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/
Object Caching 103/103 objects using redis
Content Delivery Network via Amazon Web Services: CloudFront: d38jnz52bk9bao.cloudfront.net
Database Caching 9/9 queries in 0.001 seconds using redis
Served from: lemansvirtual.com @ 2022-01-13 05:17:08 by W3 Total Cache
-->