generated from extratone/latte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html@p=440.html
446 lines (390 loc) · 33.9 KB
/
index.html@p=440.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 = '440';
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>Le Mans Virtual Series Competitors Ready for Round One at Italy's Temple of Speed - Le Mans Virtual Series</title>
<link rel="canonical" href="index.html@p=440.html" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Le Mans Virtual Series Competitors Ready for Round One at Italy's Temple of Speed - Le Mans Virtual Series" />
<meta property="og:description" content="View the full entry list here Silverstone, September 21, 2021. The entry list for the opening round of the recently […]" />
<meta property="og:url" content="https://lemansvirtual.com/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/" />
<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-09-21T12:55:03+00:00" />
<meta property="og:image" content="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Poster_1_1920x1080_CTA.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="4 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/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#primaryimage","inLanguage":"en-GB","url":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Poster_1_1920x1080_CTA.jpg?x65095","contentUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Poster_1_1920x1080_CTA.jpg?x65095","width":1920,"height":1080},{"@type":"WebPage","@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#webpage","url":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/","name":"Le Mans Virtual Series Competitors Ready for Round One at Italy's Temple of Speed - Le Mans Virtual Series","isPartOf":{"@id":"https://lemansvirtual.com/#website"},"primaryImageOfPage":{"@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#primaryimage"},"datePublished":"2021-09-21T12:55:03+00:00","dateModified":"2021-09-21T12:55:03+00:00","breadcrumb":{"@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/"]}]},{"@type":"BreadcrumbList","@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://lemansvirtual.com/"},{"@type":"ListItem","position":2,"name":"Le Mans Virtual Series Competitors Ready for Round One at Italy’s Temple of Speed"}]},{"@type":"Article","@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#article","isPartOf":{"@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#webpage"},"author":{"@id":"https://lemansvirtual.com/#/schema/person/b9bda3789612ad1bbbcdadc12e407b3b"},"headline":"Le Mans Virtual Series Competitors Ready for Round One at Italy’s Temple of Speed","datePublished":"2021-09-21T12:55:03+00:00","dateModified":"2021-09-21T12:55:03+00:00","mainEntityOfPage":{"@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#webpage"},"wordCount":764,"publisher":{"@id":"https://lemansvirtual.com/#organization"},"image":{"@id":"https://lemansvirtual.com/fr/le-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed/#primaryimage"},"thumbnailUrl":"https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Poster_1_1920x1080_CTA.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/440" /><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=440.html' />
<link rel="alternate" type="application/json+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Fle-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed%252F" />
<link rel="alternate" type="text/xml+oembed" href="wp-json/oembed/1.0/embed@url=https%253A%252F%252Flemansvirtual.com%252Fle-mans-virtual-series-competitors-ready-for-round-one-at-italys-temple-of-speed%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=440.html"/>
<link rel="alternate" hreflang="en" href="index.html@p=440.html"/>
<link rel="alternate" hreflang="fr-FR" href="fr/index.html@p=440.html"/>
<link rel="alternate" hreflang="fr" href="fr/index.html@p=440.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-440 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=440.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="">Le Mans Virtual Series Competitors Ready for Round One at Italy’s Temple of Speed</h1>
<h2 class="small-heading"><span class="posted-on">Posted on <time class="entry-date published updated" datetime="2021-09-21T13:55:03+01:00">21 September 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-440" class="post-440 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/09/LeMansVirtualSeries_Poster_1_1920x1080_CTA.jpg?x65095" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" /> </div><!-- .post-thumbnail -->
<div class="entry-content">
<h4><a href="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Round-1_entry-list.pdf?x65095"><strong>View the full entry list here</strong></a></h4>
<p><strong>Silverstone, September 21, 2021.</strong> The entry list for the opening round of the recently launched Le Mans Virtual Series, 4 Hours of Monza, has been published (<a href="https://d38jnz52bk9bao.cloudfront.net/wp-content/uploads/2021/09/LeMansVirtualSeries_Round-1_entry-list.pdf?x65095">HERE</a>) and the high level of both real life and sim drivers due to compete is a great indication of how closely contested the series is likely to be from start to finish.</p>
<p>Louis Deletraz (last year’s 24 Hours of Le Mans Virtual winner and, with teammate Yifei Ye, newly crowned ELMS LMP2 Champions), Sergio Sette Camara (Formula E), Beitske Visser (W Series and WEC), Will Stevens (WEC and ELMS), Bruno Spengler (former DTM champion and IMSA competitor), Jan von der Heyde, Michi Hoyer and Nuno Pinto (multiple championships in sim racing between them) are just some of the well-known names from the real and virtual racing worlds who will line up for the start on sim rigs across the world. Bringing perhaps a ‘home’ advantage will be Porsche Esports Team’s Ayhancan Güven who is racing in the Porsche Carrera Cup at Monza this weekend and will therefore be participating in the LMVS event on site, joined by his sim racing teammates.</p>
<p>The race takes place this coming weekend on the rFactor2 platform at the virtual Autodromo Nazionale Monza and coverage will begin from 12:30 pm on Saturday, September 25. Built in 1922, the real Autodromo Nazionale Monza is the true Italian temple of speed and is unmatched around the globe for its history and the passion it invokes in motorsport fans. Expect no different from everyone involved in this new endurance esports series!</p>
<p>A total of 38 cars will battle it out in two different classes – 21 in LMP2, with all competitors using an ORECA 07 LMP2 model, and 17 in LMGTE with teams having a choice of Ferrari 488GTE, BMW M8 GTE, Porsche 911 RSR GTE, Corvette C8.R and Aston Martin Vantage GTE. Negotiating through the traffic at famously challenging sections of the track such as the Variante del Rettifilo (the chicane at the end of the pit straight), the Variante della Roggia and the Curva Parabolica will add to the tension and drama expected in the race.</p>
<p>Free practice sessions will be run on Thursday and Friday, with a one-hour test race taking place on Thursday evening to check servers, systems and communications for both the sporting and broadcast teams. Qualifying is on Friday September 24 from 6:00pm British Summer Time (BST) (19h00 CEST, 1:00 pm Eastern Time) with the session being broadcast live. All the race action can be followed from 12:30 pm (BST) onwards on the FIA WEC and TraxionGG’s YouTube channels, on twitch.tv/traxiongg, and on multiple social media channels. More details on these will be released in the coming days.</p>
<p>For further media information contact Fiona Miller, Miller Media & Communications, on +44 7770 371332 or <a href="mailto:miller.media10@btinternet.com">miller.media10@btinternet.com</a></p>
<p><strong>About Le Mans Virtual Series</strong></p>
<p>Le Mans Virtual Series is a global, elite esports series made up of five rounds which bring together endurance racing and sim racing’ top teams to compete on some of the world’s most famous racetracks. International FIA-licensed real-world drivers are teamed up with leading esports protagonists to take on endurance classics for a total prize fund of US$250,000, culminating in the prestigious 24 Hours of Le Mans Virtual which will take place live and televised at the Autosport Show International at the Birmingham NEC (UK). Le Mans Virtual Series is a joint venture between leading racing game developer, publisher and esports ecosystem provider of official motorsport racing series throughout the world, Motorsport Games, and the Automobile Club de l’Ouest (ACO)- the creator and organizer of the world-famous 24 Hours of Le Mans and promoter of the FIA World Endurance Championship (FIA WEC). <a href="../www.lemansvirtual.com/index.html">www.lemansvirtual.com</a></p>
<p>Round 1 4 Hours of Monza, Italy September 25, 2021 Online only</p>
<p>Round 2 6 Hours of Spa, Belgium October 16, 2021 Online only</p>
<p>Round 3 8 Hours of Nürburgring, Germany November 13, 2021 Online only</p>
<p>Round 4 6 Hours of Sebring, USA December 18, 2021 Online only</p>
<p>Round 5 24 Hours of Le Mans Virtual January 15/16, 2022 ASI, Birmingham, UK</p>
<p><strong>About Motorsport Games</strong></p>
<p>Motorsport Games, a Motorsport Network company, combines innovative and engaging video games with exciting esports competitions and content for racing fans and gamers around the globe. The Company is the officially licensed video game developer and publisher for iconic motorsport racing series including NASCAR, INDYCAR, 24 Hours of Le Mans and the British Touring Car Championship (“BTCC”). Motorsport Games is an award-winning esports partner of choice for 24 Hours of Le Mans, Formula E, BTCC, the FIA World Rallycross Championship and the eNASCAR Heat Pro League, among others.</p>
</div><!-- .entry-content -->
</article><!-- #post-440 -->
</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=440.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=440.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=440.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 100/100 objects using redis
Content Delivery Network via Amazon Web Services: CloudFront: d38jnz52bk9bao.cloudfront.net
Database Caching 11/11 queries in 0.002 seconds using redis
Served from: lemansvirtual.com @ 2022-01-13 05:17:15 by W3 Total Cache
-->