-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
1011 lines (607 loc) · 40.8 KB
/
news.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8" />
<link rel="canonical" href="news.html" />
<meta name="google" content="notranslate" />
<meta name="Generator" content="Drupal 8 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="themes/jwoc2019c/favicon.png" type="image/png" />
<title>News | JWOC 2019</title>
<link rel="stylesheet" media="all" href="sites/default/files/css/css_T-mwV-HdBEabCUe4c-u9h_-X1S70OdbKvxPct58vkog.css" />
<link rel="stylesheet" media="all" href="sites/default/files/css/css_zPWpzfoYSm1Y1eI7Oa20qzmgj3bK3hRj_Mf6GrHSW6A.css" />
<!--[if lte IE 8]>
<script src="/sites/default/files/js/js_VtafjXmRvoUgAzqzYTA3Wrjkx9wcWhjP0G4ZnnqRamA.js"></script>
<![endif]-->
</head>
<body>
<a href="#main-content" class="visually-hidden focusable">
Skip to main content
</a>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div class="page pb-3">
<div class="container-fluid content-wrapper d-print-none">
<div class="top-level-menu">
<div class="container">
<a href="index.html" class="banner"></a>
<nav class="navbar navbar-expand navbar-light">
<div class="navbar-collapse">
<div class="settings-tray-editable block block--jwoc2019c-top-level-navigation" data-drupal-settingstray="editable">
<ul class="nav navbar-nav">
<li class="nav-item active ">
<a href="index.html" class="nav-link" data-drupal-link-system-path="<front>">JWOC</a>
</li>
<li class="nav-item ">
<a href="tour.html" class="nav-link" data-drupal-link-system-path="node/25">JWOC Tour</a>
</li>
<li class="nav-item ">
<a href="for-spectators.html" class="nav-link" data-drupal-link-system-path="node/53">For Spectators</a>
</li>
</ul>
</div>
<div class="language-switcher-language-url settings-tray-editable block block--languageswitcher" role="navigation" data-drupal-settingstray="editable">
<ul class="links list-inline mb-0"><li hreflang="en" data-drupal-link-system-path="news" class="en list-inline-item is-active"><a href="news.html" class="language-link is-active" hreflang="en" data-drupal-link-system-path="news">English</a></li><li hreflang="da" data-drupal-link-system-path="news" class="da list-inline-item"><a href="da/news.html" class="language-link" hreflang="da" data-drupal-link-system-path="news">Danish</a></li></ul>
</div>
</div>
</nav>
</div>
</div>
<div class="primary-menu">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light ">
<div></div>
<button class="mt-1 mb-1 navbar-toggler" type="button" data-toggle="collapse" data-target="#primary-menu-collapse"
aria-controls="navbar-collapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="primary-menu-collapse" class="collapse navbar-collapse">
<div class="mr-auto">
<div class="settings-tray-editable block block--jwoc2019c-main-menu" data-drupal-settingstray="editable">
<ul class="nav navbar-nav">
<li class="nav-item ">
<a href="index.html" class="nav-link" data-drupal-link-system-path="node/70">Races</a>
</li>
<li class="nav-item active ">
<a href="news.html" class="nav-link is-active" data-drupal-link-system-path="news">News</a>
</li>
<li class="nav-item ">
<a href="competition-info.html" class="nav-link" data-drupal-link-system-path="node/51">Competition Info</a>
</li>
<li class="nav-item ">
<a href="calendar.html" class="nav-link" data-drupal-link-system-path="node/11">Calendar</a>
</li>
<li class="nav-item ">
<a href="terrain.html" class="nav-link" data-drupal-link-system-path="node/14">Terrain</a>
</li>
<li class="nav-item ">
<a href="accommodation.html" class="nav-link" data-drupal-link-system-path="node/2">Accommodation</a>
</li>
<li class="nav-item ">
<a href="sponsors.html" class="nav-link" data-drupal-link-system-path="node/48">Sponsors</a>
</li>
</ul>
</div>
</div>
<div class="settings-tray-editable block block--cart" data-drupal-settingstray="editable">
</div>
</div>
</nav>
</div>
</div>
</div>
<main>
<div class="page__content">
<div class="pt-2 pb-2 container content-wrapper">
<div data-drupal-messages-fallback class="hidden"></div>
<div class="block block--jwoc2019c-page-title">
<h1 class="display-4">News</h1>
</div>
<div class="block block--jwoc2019c-content">
<div class="views-element-container"><div class="js-view-dom-id-150ce529d8b5c841424987b5a451ae1482481815091e0650aaee862312232da1">
<div class="views-row"><article role="article" about="/node/74" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/74.html" rel="bookmark"><span property="schema:name">Close win for Great Britain’s women over Russia</span>
</a>
</h2>
<span property="schema:name" content="Close win for Great Britain’s women over Russia" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-12T11:40:43+00:00">Fri, 12/7/2019 - 13:40</span>
<span property="schema:dateCreated" content="2019-07-12T11:40:43+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_11151fcb.jpg?itok=IBV-rnaJ" width="800" height="533" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_11151fcb.jpg?itok=IBV-rnaJ" alt="Great Britain’s women" />
</div>
<div property="schema:text" class="article__body"><p>The women’s race was a close fight between Great Britain and Russia, with Grace Molloy holding her nerve to take the win by 18 seconds. Bronze medals went to Sweden by 1 second after Alva Sönesson overtook the Finnish runner Ida Haapala in the last few strides.</p>
<p>Russia showed their strength from the start in the women’s race, with both Russian teams with Sweden at the front after the first leg, followed closely by Great Britain. A 30-second error by Fiona Bunn for Great Britain on the last loop gave Russia a lead of 1.05 at the second changeover, with Sweden 2 third. Grace Molloy, double bronze medallist from earlier in the week, caught up the Russian Veronika Kalinina after 10 minutes’ running and they stayed much together until Molloy pulled away a little on the final loop. Fifth and sixth places went to the Czech Republic and Norway.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/73" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/73.html" rel="bookmark"><span property="schema:name">Men's title to Norway</span>
</a>
</h2>
<span property="schema:name" content="Men's title to Norway" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-12T11:29:13+00:00">Fri, 12/7/2019 - 13:29</span>
<span property="schema:dateCreated" content="2019-07-12T11:29:13+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_94251f81.jpg?itok=UUVcModj" width="800" height="533" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_94251f81.jpg?itok=UUVcModj" alt="Norway’s men" />
</div>
<div property="schema:text" class="article__body"><p>Norway’s Kasper Fosser won his third gold medal of the championships, bringing the Norwegian team in to the finish with a 2.09 lead over Sweden 2. </p>
<p>At the end of the first leg in the men’s Relay, which started first, five nations – Switzerland, Sweden, France, Czech Republic and Norway – established a 1-minute lead over all others. France came into the second changeover ahead by 8 seconds over Norway 1 and Sweden 2, but Fosser quickly caught up the Frenchman and began to pull away half-way though his race. He navigated the tricky final loop after the spectator passage without any loss of time and took a clean victory to retain the Relay men’s title.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/72" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/72.html" rel="bookmark"><span property="schema:name">The Relay is under way!</span>
</a>
</h2>
<span property="schema:name" content="The Relay is under way!" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-12T08:26:13+00:00">Fri, 12/7/2019 - 10:26</span>
<span property="schema:dateCreated" content="2019-07-12T08:26:13+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_93676ff0.jpg?itok=c2a2chpz" width="800" height="533" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_93676ff0.jpg?itok=c2a2chpz" alt="Change-over zone" />
</div>
<div property="schema:text" class="article__body"><p>Another magnificent arena for the Relay, on a cloudy morning with a little dampness – but not enough of that to dampen the enthusiasm of the big crowd. Huge cheers for the men’s mass start, and now we are following the race on the big screen with plenty of tracking to watch, plus some TV from the forest. There is a spectator control on the edge of the arena in a patch of high-visibility deciduous forest, then a long marked route including coaching zone, all visible to the spectators. In front of that a fast downhill run from the last control to the changeover, so a fine spectator bank with everything in sight – superb!</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/71" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/71.html" rel="bookmark"><span property="schema:name">Second gold for Kasper Fosser</span>
</a>
</h2>
<span property="schema:name" content="Second gold for Kasper Fosser" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-11T11:57:43+00:00">Thu, 11/7/2019 - 13:57</span>
<span property="schema:dateCreated" content="2019-07-11T11:57:43+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/DSC0829609d1.jpg?itok=PHMbL3jZ" width="800" height="533" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/DSC0829609d1.jpg?itok=PHMbL3jZ" alt="Kasper Fosser crossing the finish line" />
</div>
<div property="schema:text" class="article__body"><p>The Norwegian Kasper Fosser again showed his class with a win by 1.09 in today’s Middle Final. Isa Envall, Sweden won the women’s race by a convincing margin.</p>
<p>Isa Envall set the marker point for the women’s race from a position half-way through the start list, and towards the end in particular there were several runners who seemed as though they might chase her time down. Closest was Fiona Bunn, Great Britain, who took the silver medal with a time 0.54 slower than Envall’s. Tereza Janosikova, Czech Republic, winner of two silver medals in JWOC in the last two years, was in bronze medal position today.</p>
<p>Kasper Fosser dominated the men’s race much as he did in the Long distance. His closest challenger was Frenchman Guilhem Elias, who ended 1.09 down. Norway ended with two medals today, bronze going to Lukas Liland.</p>
<p>The courses were both technically and physically challenging with many steep slopes, and with the start and a spectator control in the arena, plus the big screen, there was lots to keep spectators on their toes.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/69" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/69.html" rel="bookmark"><span property="schema:name">All set for an exciting Middle Final!</span>
</a>
</h2>
<span property="schema:name" content="All set for an exciting Middle Final!" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-11T08:11:09+00:00">Thu, 11/7/2019 - 10:11</span>
<span property="schema:dateCreated" content="2019-07-11T08:11:09+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_20190711_110500_0128e70.jpg?itok=VmI2xoq8" width="800" height="600" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_20190711_110500_0128e70.jpg?itok=VmI2xoq8" alt="JWOC Middle Final" />
</div>
<div property="schema:text" class="article__body"><p>Cloudy but dry and calm conditions for the Middle distance finals this morning. The arena has been changed around from yesterday with the start in full view of the spectators, athletes disappearing quickly into the forest.</p>
<p>The first A-final runner, Pranas Germanavicius from Lithuania in the men’s race, starts at 10.15. The first women's start is half-an-hour later. For the A-final there is a spectator control and a spectator-friendly run-in from a new direction with a loop to the finish.</p>
<p>Fans from many countries are making their way into the arena, and the atmosphere is building up as the B- and C- finals reach their conclusion.</p>
<p>Final start times in the A-finals are 12.13 (men) and 12.43 (women), with estimated winning times of 25 minutes. There are some fascinating fights to come in the hilly Gjern Bakker terrain today!</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/67" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/67.html" rel="bookmark"><span property="schema:name">Middle distance: 24 nations in A-finals</span>
</a>
</h2>
<span property="schema:name" content="Middle distance: 24 nations in A-finals" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-10T12:38:25+00:00">Wed, 10/7/2019 - 14:38</span>
<span property="schema:dateCreated" content="2019-07-10T12:38:25+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div property="schema:text" class="article__body"><p>There will be athletes from 24 nations in the A-finals tomorrow. Heat winners today include Kasper Fosser, Norway and Aston Key, Australia, champions in Long and Sprint.</p>
<p>Best nation was Sweden with 11 qualifiers, followed by Denmark and Switzerland with 10. Finland and Norway have 9, and the Czech Republic and France 8. At the other end of the scale, Slovakia and Ukraine have 1 qualifying athlete and Australia, Canada, Germany, Spain and USA have 2.</p>
<p>Unluckiest athlete was Dominika Mero, Hungary who missed qualifying by just 1 second. Two Danes missed qualification by less than 10 seconds.</p>
<h4>Heat winners (last starters in the A-final)</h4>
<p><strong>Women: </strong>Fiona Bunn GBR by 0.09, Barbora Chaloupska CZE by 0.47 and Tereza Janosikova CZE by 0.42</p>
<p><strong>Men</strong>: Kasper Fosser NOR by 0.39, Aston Key AUS by 0.43 and Søren Thrane Ødum DEN by 1.09</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/66" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/66.html" rel="bookmark"><span property="schema:name">Back to business!</span>
</a>
</h2>
<span property="schema:name" content="Back to business!" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-10T09:37:57+00:00">Wed, 10/7/2019 - 11:37</span>
<span property="schema:dateCreated" content="2019-07-10T09:37:57+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_93248974.jpg?itok=zA9nNLZR" width="800" height="533" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_93248974.jpg?itok=zA9nNLZR" alt="JWOC Middle Qualification" />
</div>
<div property="schema:text" class="article__body"><p>After a rest day it’s back to serious business today with the Middle Qualification in the legendary Gjern Bakker terrain, used for both World Championship and World Cup races in the past. The goal for all competitors is to finish amongst the best 20 in their heat, so securing a place in the A-Final tomorrow. There are 3 women’s heats and 3 men’s. Times are fast on this fine, sunny morning, with yet another super arena surrounded by forest, and a big crowd of excited spectators.</p>
<p>Tomorrow the same arena will be used for the finals.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/65" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/65.html" rel="bookmark"><span property="schema:name">Women’s Long Distance update: joint gold medals for Finland and Russia</span>
</a>
</h2>
<span property="schema:name" content="Women’s Long Distance update: joint gold medals for Finland and Russia" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-09T10:37:41+00:00">Tue, 9/7/2019 - 12:37</span>
<span property="schema:dateCreated" content="2019-07-09T10:37:41+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div property="schema:text" class="article__body"><p>There have been no further protests by the deadline, so the jury’s decision stands and the women’s results are now official: gold medals for both Ida Haapala, Finland and Veronika Kalinina, Russia. The bronze medal goes to Grace Molloy, Great Britain. Full official results are on IOF Eventor.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/63" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/63.html" rel="bookmark"><span property="schema:name">Note on Results 8 July, Long</span>
</a>
</h2>
<span property="schema:name" content="Note on Results 8 July, Long" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/210" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/210" typeof="schema:Person" property="schema:name" datatype="">Morten Pedersen</span></span>
on <span property="schema:dateCreated" content="2019-07-08T18:00:00+00:00">Mon, 8/7/2019 - 20:00</span>
<span property="schema:dateCreated" content="2019-07-08T18:00:00+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div property="schema:text" class="article__body"><p>During the Long Distance competition, the touch-free function of the Russian Veronika Kalinina's SIAC Touch Free card stopped working. As a result she had to hand-punch and her finish time was registered manually by the back-up system. In the provisional results - based on her manual time - she was placed second, 1 second slower than Ida Haapala FIN. Following a protest from Russia, concerning the precision of the finish time, the Jury (Christine Brown AUS, Kalle Dalin SWE and Szava Zsigmond HUN) decided to adjust Ida Haapala's time to 53:46, the same time as Veronika Kalinina. The decision was based on an analysis of the times recorded by the back-up timing system. The Jury decided that the organisers cannot prove that the time in the manual backup timing system is the same as that in the primary system.</p>
<p>As a result of this outcome, the official result list of W20 and M20 approved by SEA Hannu Pyy is published <a data-entity-substitution="canonical" data-entity-type="node" data-entity-uuid="ce162ad8-e8be-4ec1-9cf1-85b86076ad7c" href="races/long.html" title="Long Distance 8/7">here</a>. In view of the lateness of the outcome, complaints about these results can be presented at the Event Office until 12.00 on Tuesday 9 July 2019.</p>
<p>Update: At 12.00 on Tuesday 9 July 2019 no complaints were received meaning the results are now final.</p>
</div>
</div>
</article>
</div>
<div class="views-row"><article role="article" about="/node/62" typeof="schema:Article">
<h2>
<a class="text-dark" href="node/62.html" rel="bookmark"><span property="schema:name">Defending champion wins again</span>
</a>
</h2>
<span property="schema:name" content="Defending champion wins again" class="hidden"></span>
<footer class="mb-2">
<article typeof="schema:Person" about="/user/203" class="user user--compact">
</article>
<small class="text-muted">
Submitted by <span rel="schema:author"><span lang="" about="/user/203" typeof="schema:Person" property="schema:name" datatype="">Clive Allen</span></span>
on <span property="schema:dateCreated" content="2019-07-08T15:07:16+00:00">Mon, 8/7/2019 - 17:07</span>
<span property="schema:dateCreated" content="2019-07-08T15:07:16+00:00" class="hidden"></span>
</small>
</footer>
<div>
<div class="article__field-image">
<img property="schema:image" src="sites/default/files/styles/big/public/2019-07/IMG_56812aed.jpg?itok=johIePr3" width="533" height="800" typeof="foaf:Image" class="img-fluid" src="sites/default/files/styles/big/public/2019-07/IMG_56812aed.jpg?itok=johIePr3" alt="Kasper Fosser" />
</div>
<div property="schema:text" class="article__body"><p>Defending champion Kasper Fosser, Norway retained his title today in emphatic fashion. Despite a mistake one-third of the way through the course, he won by more than three minutes.</p>
<p>The race was dominated by a near master-class performance from Fosser, whose closest challengers in the end proved to be Elias Jonsson, Norway and the Sprint champion Aston Key, Australia, who took the silver and bronze medals respectively.</p>
<p>The women’s race has been the subject of a protest; more on that later.</p>
<p>The courses started out over relatively fast terrain, but then they met the steep slopes of Velling-Snabegård with its many big spurs and reentrants, which was the scene for the biggest part of the course. It was easy to get onto the wrong spur, a fate which met quite a few runners, agonising for their coaches and country-mates when displayed in GPS on the big screen in the arena. Strength and the ability to run up hills were important today as well as good navigation.</p>
</div>
</div>
</article>
</div>
<nav class="" role="navigation" aria-labelledby="pagination-heading">
<h4 id="pagination-heading" class="visually-hidden">Pagination</h4>
<ul class="pagination pager__items js-pager__items justify-content-center">
<li class="page-item pager__item is-active active">
<a href="news02e4.html?page=0" title="Current page" class="page-link">
<span class="visually-hidden">
Current page
</span>1</a>
</li>
<li class="page-item pager__item">
<a href="news2679.html?page=1" title="Go to page 2" class="page-link">
<span class="visually-hidden">
Page
</span>2</a>
</li>
<li class="page-item pager__item">
<a href="news4658.html?page=2" title="Go to page 3" class="page-link">
<span class="visually-hidden">
Page
</span>3</a>
</li>
<li class="page-item pager__item">
<a href="news9ba9.html?page=3" title="Go to page 4" class="page-link">
<span class="visually-hidden">
Page
</span>4</a>
</li>
<li class="page-item pager__item pager__item--next">
<a href="news2679.html?page=1" title="Go to next page" rel="next" class="page-link">
<span class="visually-hidden">Next page</span>
<span aria-hidden="true">››</span>
</a>
</li>
<li class="page-item pager__item pager__item--last">
<a href="news9ba9.html?page=3" title="Go to last page" class="page-link">
<span class="visually-hidden">Last page</span>
<span aria-hidden="true">Last »</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="page__footer d-print-none">
<div class="pt-2 pb-2 container content-wrapper">
<div class="settings-tray-editable block block--sponsors-and-partners block--jwoc2019c-allsponsorsandpartners" data-drupal-settingstray="editable">
<div class="sponsors-and-partners__field-sponsors">
<h3 class="field__label text-center">Sponsors</h3>
<div class="row mt-3">
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://www.grafiskforum.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/grafisk_forum.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/grafisk_forum.png" alt="Grafisk Forum" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://www.bygreencotton.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/Green%20Cotton.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/Green%20Cotton.png" alt="Green Cotton" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://www.lyngepapir-kontor.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/lynge%20papir%20kontor.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/lynge%20papir%20kontor.png" alt="Lynge Papir &amp; Kontor" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://silkebus.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/Silkebus.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/Silkebus.png" alt="Silkebus" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.landal.com/park/sohojlandet" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2019-03/landal.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2019-03/landal.png" alt="Landal Søhøjlandet" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.racingdenmark.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2019-03/running%20store%20racing%20denmark.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2019-03/running%20store%20racing%20denmark.png" alt="Racingdenmark" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.scandichotels.dk/hoteller/danmark/silkeborg/scandic-silkeborg" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2019-03/Scandic%20Silkeborg.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2019-03/Scandic%20Silkeborg.png" alt="Scandic Silkeborg" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.sparnord.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2019-03/spar%20nord.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2019-03/spar%20nord.png" alt="Spar Nord" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.sportident.com/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2019-03/sportident.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2019-03/sportident.png" alt="SPORTident" />
</div>
</a>
</div>
</div>
</div>
</div>
<div class="sponsors-and-partners__field-partners">
<h3 class="field__label text-center">Partners</h3>
<div class="row mt-3">
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://orienteering.org/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/iof.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/iof.png" alt="IOF - International Orienteering Federation" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://do-f.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/do-f.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/do-f.png" alt="Dansk Orienteringsforbund" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://www.woc2020.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-12/woc2020.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-12/woc2020.png" alt="World Orienteering Championships 2020" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://silkeborg-ok.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/sok.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/sok.png" alt="Silkeborg Orienteringsklub" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://www.okpan.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/ok%20pan.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/ok%20pan.png" alt="Orienteringsklubben PAN" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://www.sporteventdenmark.com/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/sport%20event%20danmark.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/sport%20event%20danmark.png" alt="Sport Event Denmark" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="http://eventsilkeborg.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/event%20silkeborg.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/event%20silkeborg.png" alt="Event Silkeborg" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://aarhusevents.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/aarhus%20events.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/aarhus%20events.png" alt="Aarhus Events" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://silkeborg.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/silkeborg%20kommune.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/silkeborg%20kommune.png" alt="Silkeborg Kommune" />
</div>
</a>
</div>
</div>
<div class="field__item col-4 col-md-2 mb-3">
<div class="paragraph paragraph--type--image-with-link paragraph--view-mode--default">
<a href="https://aarhus.dk/" target="_blank">
<div class="image-with-link__field-image">
<img src="sites/default/files/2018-11/city%20of%20aarhus.png" width="800" height="400" typeof="foaf:Image" class="img-fluid" src="sites/default/files/2018-11/city%20of%20aarhus.png" alt="City of Aarhus" />
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="settings-tray-editable block block--basic block--jwoc2019c-footertext" data-drupal-settingstray="editable">
<div class="basic__body"><hr /><div class="container">
<div class="row">
<div class="col-md">
<p>For any enquiries, contact Dorthe Hansen (Event Director) at:<br />
Email: <a href="mailto:[email protected]">[email protected]</a> | Phone: +45 30664285</p>
</div>
<div class="col-md">
<p class="text-right"><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Purchase</a> | © 2019 JWOC2019.dk</p>
</div>
</div>
</div>
</div>
</div>
</div>