-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-109.htm
1179 lines (1077 loc) · 141 KB
/
index-109.htm
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="fi"
prefix="og: https://ogp.me/ns#" >
<head itemscope itemtype="https://schema.org/WebSite">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Willimiehen Disc Golf, WDG, frisbeegolf Etelä-Karjalassa</title>
<!-- All in One SEO 4.1.4.4 -->
<meta name="description" content="Willimiehen Disc Golf, WDG, frisbeegolfia Etelä-Karjalassa, WDG ry, disc golf in South-Karelia, Finland" />
<meta name="robots" content="max-image-preview:large" />
<link rel="canonical" href="https://www.wdg.fi/" />
<link rel="next" href="https://www.wdg.fi/page/2/" />
<meta property="og:locale" content="fi_FI" />
<meta property="og:site_name" content="WDG ry, Willimiehen Disc Golf, frisbeegolf, Lappeenranta" />
<meta property="og:type" content="article" />
<meta property="og:title" content="WDG ry, Willimiehen Disc Golf, frisbeegolf, Lappeenranta" />
<meta property="og:description" content="WDG ry, Willimiehen Disc Golf, frisbeegolf, Lappeenranta" />
<meta property="og:url" content="https://www.wdg.fi/" />
<meta property="fb:admins" content="107006836054600" />
<meta property="og:image" content="https://www.wdg.fi/wp-content/uploads/2018/11/IMG_20170506_091823.jpg" />
<meta property="og:image:secure_url" content="https://www.wdg.fi/wp-content/uploads/2018/11/IMG_20170506_091823.jpg" />
<meta property="article:published_time" content="2021-10-08T19:07:01+00:00" />
<meta property="article:modified_time" content="2021-10-08T19:07:01+00:00" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:domain" content="www.wdg.fi" />
<meta name="twitter:title" content="WDG ry, Willimiehen Disc Golf, frisbeegolf, Lappeenranta" />
<meta name="twitter:description" content="WDG ry, Willimiehen Disc Golf, frisbeegolf, Lappeenranta" />
<meta name="twitter:image" content="https://www.wdg.fi/wp-content/uploads/2018/11/IMG_20170506_091823.jpg" />
<meta name="google" content="nositelinkssearchbox" />
<script type="application/ld+json" class="aioseo-schema">
{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/www.wdg.fi\/#website","url":"https:\/\/www.wdg.fi\/","name":"WDG","description":"Willimiehen Disc Golf ry, WDG, frisbeegolf, Etel\u00e4-Karjala","inLanguage":"fi","publisher":{"@id":"https:\/\/www.wdg.fi\/#organization"}},{"@type":"Organization","@id":"https:\/\/www.wdg.fi\/#organization","name":"WDG","url":"https:\/\/www.wdg.fi\/"},{"@type":"BreadcrumbList","@id":"https:\/\/www.wdg.fi\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.wdg.fi\/#listItem","position":1,"item":{"@type":"WebPage","@id":"https:\/\/www.wdg.fi\/","name":"Home","description":"Willimiehen Disc Golf, WDG, frisbeegolfia Etel\u00e4-Karjalassa, WDG ry, disc golf in South-Karelia, Finland","url":"https:\/\/www.wdg.fi\/"}}]},{"@type":"CollectionPage","@id":"https:\/\/www.wdg.fi\/#collectionpage","url":"https:\/\/www.wdg.fi\/","name":"Willimiehen Disc Golf, WDG, frisbeegolf Etel\u00e4-Karjalassa","description":"Willimiehen Disc Golf, WDG, frisbeegolfia Etel\u00e4-Karjalassa, WDG ry, disc golf in South-Karelia, Finland","inLanguage":"fi","isPartOf":{"@id":"https:\/\/www.wdg.fi\/#website"},"breadcrumb":{"@id":"https:\/\/www.wdg.fi\/#breadcrumblist"},"about":{"@id":"https:\/\/www.wdg.fi\/#organization"}}]}
</script>
<!-- All in One SEO -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge" /><link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link rel='dns-prefetch' href='//netdna.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//use.fontawesome.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="WDG » syöte" href="https://www.wdg.fi/feed/" />
<link rel="alternate" type="application/rss+xml" title="WDG » kommenttien syöte" href="https://www.wdg.fi/comments/feed/" />
<link rel="alternate" type="text/calendar" title="WDG » iCal-syöte" href="https://www.wdg.fi/tapahtumat/?ical=1" />
<!-- This site uses the Google Analytics by MonsterInsights plugin v8.1.0 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<script src="//www.googletagmanager.com/gtag/js?id=UA-126958892-1" type="text/javascript" data-cfasync="false" async></script>
<script type="text/javascript" data-cfasync="false">
var mi_version = '8.1.0';
var mi_track_user = true;
var mi_no_track_reason = '';
var disableStrs = [
'ga-disable-UA-126958892-1',
];
/* Function to detect opted out users */
function __gtagTrackerIsOptedOut() {
for ( var index = 0; index < disableStrs.length; index++ ) {
if ( document.cookie.indexOf( disableStrs[ index ] + '=true' ) > -1 ) {
return true;
}
}
return false;
}
/* Disable tracking if the opt-out cookie exists. */
if ( __gtagTrackerIsOptedOut() ) {
for ( var index = 0; index < disableStrs.length; index++ ) {
window[ disableStrs[ index ] ] = true;
}
}
/* Opt-out function */
function __gtagTrackerOptout() {
for ( var index = 0; index < disableStrs.length; index++ ) {
document.cookie = disableStrs[ index ] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[ disableStrs[ index ] ] = true;
}
}
if ( 'undefined' === typeof gaOptout ) {
function gaOptout() {
__gtagTrackerOptout();
}
}
window.dataLayer = window.dataLayer || [];
window.MonsterInsightsDualTracker = {
helpers: {},
trackers: {},
};
if ( mi_track_user ) {
function __gtagDataLayer() {
dataLayer.push( arguments );
}
function __gtagTracker( type, name, parameters ) {
if ( type === 'event' ) {
parameters.send_to = monsterinsights_frontend.ua;
__gtagDataLayer.apply( null, arguments );
} else {
__gtagDataLayer.apply( null, arguments );
}
}
__gtagTracker( 'js', new Date() );
__gtagTracker( 'set', {
'developer_id.dZGIzZG' : true,
} );
__gtagTracker( 'config', 'UA-126958892-1', {"forceSSL":"true"} );
window.gtag = __gtagTracker; (
function () {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
/* ga and __gaTracker compatibility shim. */
var noopfn = function () {
return null;
};
var newtracker = function () {
return new Tracker();
};
var Tracker = function () {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = function (){
var args = Array.prototype.slice.call(arguments);
args.unshift( 'send' );
__gaTracker.apply(null, args);
};
var __gaTracker = function () {
var len = arguments.length;
if ( len === 0 ) {
return;
}
var f = arguments[len - 1];
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
if ( 'send' === arguments[0] ) {
var hitConverted, hitObject = false, action;
if ( 'event' === arguments[1] ) {
if ( 'undefined' !== typeof arguments[3] ) {
hitObject = {
'eventAction': arguments[3],
'eventCategory': arguments[2],
'eventLabel': arguments[4],
'value': arguments[5] ? arguments[5] : 1,
}
}
}
if ( 'pageview' === arguments[1] ) {
if ( 'undefined' !== typeof arguments[2] ) {
hitObject = {
'eventAction': 'page_view',
'page_path' : arguments[2],
}
}
}
if ( typeof arguments[2] === 'object' ) {
hitObject = arguments[2];
}
if ( typeof arguments[5] === 'object' ) {
Object.assign( hitObject, arguments[5] );
}
if ( 'undefined' !== typeof arguments[1].hitType ) {
hitObject = arguments[1];
if ( 'pageview' === hitObject.hitType ) {
hitObject.eventAction = 'page_view';
}
}
if ( hitObject ) {
action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction;
hitConverted = mapArgs( hitObject );
__gtagTracker( 'event', action, hitConverted );
}
}
return;
}
function mapArgs( args ) {
var arg, hit = {};
var gaMap = {
'eventCategory': 'event_category',
'eventAction': 'event_action',
'eventLabel': 'event_label',
'eventValue': 'event_value',
'nonInteraction': 'non_interaction',
'timingCategory': 'event_category',
'timingVar': 'name',
'timingValue': 'value',
'timingLabel': 'event_label',
'page' : 'page_path',
'location' : 'page_location',
'title' : 'page_title',
};
for ( arg in args ) {
if ( ! ( ! args.hasOwnProperty(arg) || ! gaMap.hasOwnProperty(arg) ) ) {
hit[gaMap[arg]] = args[arg];
} else {
hit[arg] = args[arg];
}
}
return hit;
}
try {
f.hitCallback();
} catch ( ex ) {
}
};
__gaTracker.create = newtracker;
__gaTracker.getByName = newtracker;
__gaTracker.getAll = function () {
return [];
};
__gaTracker.remove = noopfn;
__gaTracker.loaded = true;
window['__gaTracker'] = __gaTracker;
}
)();
} else {
console.log( "" );
( function () {
function __gtagTracker() {
return null;
}
window['__gtagTracker'] = __gtagTracker;
window['gtag'] = __gtagTracker;
} )();
}
</script>
<!-- / Google Analytics by MonsterInsights -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.wdg.fi\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8.1"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='tec-variables-full-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/common/src/resources/css/variables-full.min.css?ver=4.14.6' type='text/css' media='all' />
<link rel='stylesheet' id='tec-variables-skeleton-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/common/src/resources/css/variables-skeleton.min.css?ver=4.14.6' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-common-skeleton-style-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/common/src/resources/css/common-skeleton.min.css?ver=4.14.6' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-common-full-style-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/common/src/resources/css/common-full.min.css?ver=4.14.6' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-events-views-v2-bootstrap-datepicker-styles-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/vendor/bootstrap-datepicker/css/bootstrap-datepicker.standalone.min.css?ver=5.10.0' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-tooltipster-css-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/common/vendor/tooltipster/tooltipster.bundle.min.css?ver=4.14.6' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-events-views-v2-skeleton-css' href='https://www.wdg.fi/wp-content/plugins/the-events-calendar/src/resources/css/views-skeleton.min.css?ver=5.10.0' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-ext-events-control-css' href='https://www.wdg.fi/wp-content/plugins/tribe-ext-events-control-master/src/resources/css/style.css?ver=1.3.0' type='text/css' media='all' />
<link rel='stylesheet' id='academy-pro-css' href='https://www.wdg.fi/wp-content/themes/academy-pro/style.css?ver=1.0.7' type='text/css' media='all' />
<style id='academy-pro-inline-css' type='text/css'>
.single .content .entry-content > p:first-of-type {
font-size: 26px;
letter-spacing: -0.7px;
}
a,
h4,
button.secondary:focus,
button.secondary:hover,
input[type="button"].secondary:focus,
input[type="button"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="submit"].secondary:focus,
input[type="submit"].secondary:hover,
.button.secondary:focus,
.button.secondary:hover,
.menu > .highlight > a:hover,
.site-title a:focus,
.site-title a:hover,
.entry-title a:focus,
.entry-title a:hover,
.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover,
.genesis-responsive-menu .genesis-nav-menu a:focus,
.genesis-responsive-menu .genesis-nav-menu a:hover,
.gs-faq button:focus,
.gs-faq button:hover,
.gs-faq button.gs-faq--expanded:focus,
.entry-footer .entry-meta .entry-categories a:focus,
.entry-footer .entry-meta .entry-categories a:hover,
.entry-footer .entry-meta .entry-tags a:focus,
.entry-footer .entry-meta .entry-tags a:hover,
.entry-footer .entry-meta .entry-terms a:focus,
.entry-footer .entry-meta .entry-terms a:hover,
.sidebar a:not(.button):focus,
.sidebar a:not(.button):hover,
.sp-icon-accent,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
color: #000000;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
background-color: #000000;
}
.enews-widget::after {
background: #000000;
}
.academy-top-banner,
.enews-widget input[type="submit"],
.sidebar .enews-widget input[type="submit"] {
background-color: #000000;
}
a.more-link.button.text:focus,
a.more-link.button.text:hover,
button.text:focus,
button.text:hover,
input[type="button"].text:focus,
input[type="button"].text:hover,
input[type="reset"].text:focus,
input[type="reset"].text:hover,
input[type="submit"].text:focus,
input[type="submit"].text:hover,
.button.text:focus,
.button.text:hover,
.comment-reply-link:focus,
.comment-reply-link:hover,
.footer-cta::before,
.menu-toggle:focus,
.menu-toggle:hover,
.menu > .highlight > a:focus,
.menu > .highlight > a:hover {
border-color: #000000;
color: #000000;
}
a.more-link.button.text,
button.secondary,
button.text,
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary,
input:focus,
input[type="button"].text,
input[type="reset"].text,
input[type="submit"].text,
textarea:focus,
.archive-pagination a:focus,
.archive-pagination a:hover,
.archive-pagination .active a,
.button.secondary,
.button.text,
.comment-reply-link,
.entry-footer .entry-meta .entry-categories a,
.entry-footer .entry-meta .entry-tags a,
.entry-footer .entry-meta .entry-terms a,
.genesis-responsive-menu .genesis-nav-menu .sub-menu a:focus,
.genesis-responsive-menu .genesis-nav-menu .sub-menu a:hover,
.gravatar-wrap::before,
.menu-toggle,
.menu > .highlight > a,
.pricing-table .featured,
.single-featured-image::before,
.site-title a,
.site-title a:focus,
.site-title a:hover {
border-color: #000000;
}
a.button:focus,
a.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination .active a,
.button:focus,
.button:hover,
.enews-widget input[type="submit"]:focus,
.enews-widget input[type="submit"]:hover,
.sidebar .enews-widget input[type="submit"]:focus,
.sidebar .enews-widget input[type="submit"]:hover {
background-color: #000000;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.wdg.fi/wp-includes/css/dist/block-library/style.min.css?ver=5.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='foobox-free-min-css' href='https://www.wdg.fi/wp-content/plugins/foobox-image-lightbox/free/css/foobox.free.min.css?ver=2.7.16' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css' type='text/css' media='screen' />
<link rel='stylesheet' id='widgetopts-styles-css' href='https://www.wdg.fi/wp-content/plugins/widget-options/assets/css/widget-options.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-post-navigation-style-css' href='https://www.wdg.fi/wp-content/plugins/wp-post-navigation/style.css?ver=5.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='cff-css' href='https://www.wdg.fi/wp-content/plugins/custom-facebook-feed-pro/assets/css/cff-style.css?ver=4.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='weblator_polling-plugin-styles-css' href='https://www.wdg.fi/wp-content/plugins/responsive-poll/public/assets/css/public.css?ver=1.7.12' type='text/css' media='all' />
<link rel='stylesheet' id='weblator_polling-fa-css' href='https://www.wdg.fi/wp-content/plugins/responsive-poll/public/assets/css/font-awesome.min.css?ver=1.7.12' type='text/css' media='all' />
<link rel='stylesheet' id='tribe-ext-event-progress-bar-style-css' href='https://www.wdg.fi/wp-content/plugins/tribe-ext-event-progress-bar/src/style.css?ver=5.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='academy-fonts-css' href='//fonts.googleapis.com/css?family=Merriweather%3A400%2C400i%2C700%2C700i%7CPT+Sans%3A400%2C700&ver=1.0.7' type='text/css' media='all' />
<link rel='stylesheet' id='academy-sp-icons-css' href='https://www.wdg.fi/wp-content/themes/academy-pro/css/sp-icons.css?ver=1.0.7' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://www.wdg.fi/wp-includes/css/dashicons.min.css?ver=5.8.1' type='text/css' media='all' />
<link rel='stylesheet' id='wpdreams-ajaxsearchpro-instances-css' href='https://www.wdg.fi/wp-content/uploads/asp_upload/style.instances-ho-is-po-no-co-au-ga-se-is.css?ver=dtm2UO' type='text/css' media='all' />
<link rel='stylesheet' id='simple-social-icons-font-css' href='https://www.wdg.fi/wp-content/plugins/simple-social-icons/css/style.css?ver=3.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='genesis_single_post_navigation-css' href='https://www.wdg.fi/wp-content/plugins/genesis-single-post-navigation/css/single-post-navigation.css?ver=1.5' type='text/css' media='screen' />
<style id='wp-typography-custom-inline-css' type='text/css'>
sub, sup{font-size: 75%;line-height: 100%}sup{vertical-align: 60%}sub{vertical-align: -10%}.amp{font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", "Warnock Pro", serif;font-size: 1.1em;font-style: italic;font-weight: normal;line-height: 1em}.caps{font-size: 90%}.dquo{margin-left: -0.4em}.quo{margin-left: -0.2em}.pull-single{margin-left: -0.15em}.push-single{margin-right: 0.15em}.pull-double{margin-left: -0.38em}.push-double{margin-right: 0.38em}
</style>
<style id='wp-typography-safari-font-workaround-inline-css' type='text/css'>
body {-webkit-font-feature-settings: "liga";font-feature-settings: "liga";-ms-font-feature-settings: normal;}
</style>
<link rel='stylesheet' id='academy-front-styles-css' href='https://www.wdg.fi/wp-content/themes/academy-pro/css/style-front.css?ver=1.0.7' type='text/css' media='all' />
<style id='academy-front-styles-inline-css' type='text/css'>
.content .flexible-widgets > .wrap::after,
.hero-section::after {
background: #000000;
}
.front-page-5 .widget.widget_media_image .widget-wrap::before,
.front-page-3 .widget-area::before,
.hero-section-column.right::before {
border-color: #000000;
}
</style>
<link rel='stylesheet' id='bfa-font-awesome-css' href='https://use.fontawesome.com/releases/v5.15.4/css/all.css?ver=2.0.1' type='text/css' media='all' />
<link rel='stylesheet' id='bfa-font-awesome-v4-shim-css' href='https://use.fontawesome.com/releases/v5.15.4/css/v4-shims.css?ver=2.0.1' type='text/css' media='all' />
<style id='bfa-font-awesome-v4-shim-inline-css' type='text/css'>
@font-face {
font-family: 'FontAwesome';
src: url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.eot'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.eot?#iefix') format('embedded-opentype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.woff2') format('woff2'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.woff') format('woff'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.ttf') format('truetype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-brands-400.svg#fontawesome') format('svg');
}
@font-face {
font-family: 'FontAwesome';
src: url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.eot'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.eot?#iefix') format('embedded-opentype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.woff2') format('woff2'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.woff') format('woff'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.ttf') format('truetype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-solid-900.svg#fontawesome') format('svg');
}
@font-face {
font-family: 'FontAwesome';
src: url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.eot'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.eot?#iefix') format('embedded-opentype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.woff2') format('woff2'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.woff') format('woff'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.ttf') format('truetype'),
url('https://use.fontawesome.com/releases/v5.15.4/webfonts/fa-regular-400.svg#fontawesome') format('svg');
unicode-range: U+F004-F005,U+F007,U+F017,U+F022,U+F024,U+F02E,U+F03E,U+F044,U+F057-F059,U+F06E,U+F070,U+F075,U+F07B-F07C,U+F080,U+F086,U+F089,U+F094,U+F09D,U+F0A0,U+F0A4-F0A7,U+F0C5,U+F0C7-F0C8,U+F0E0,U+F0EB,U+F0F3,U+F0F8,U+F0FE,U+F111,U+F118-F11A,U+F11C,U+F133,U+F144,U+F146,U+F14A,U+F14D-F14E,U+F150-F152,U+F15B-F15C,U+F164-F165,U+F185-F186,U+F191-F192,U+F1AD,U+F1C1-F1C9,U+F1CD,U+F1D8,U+F1E3,U+F1EA,U+F1F6,U+F1F9,U+F20A,U+F247-F249,U+F24D,U+F254-F25B,U+F25D,U+F267,U+F271-F274,U+F279,U+F28B,U+F28D,U+F2B5-F2B6,U+F2B9,U+F2BB,U+F2BD,U+F2C1-F2C2,U+F2D0,U+F2D2,U+F2DC,U+F2ED,U+F328,U+F358-F35B,U+F3A5,U+F3D1,U+F410,U+F4AD;
}
</style>
<link rel='stylesheet' id='teccc_stylesheet-css' href='//www.wdg.fi/wp-content/uploads/teccc_d5bfa48194a8a02e36d12185aba2c4be.min.css?ver=6.7.1' type='text/css' media='all' />
<script type='text/javascript' id='monsterinsights-frontend-script-js-extra'>
/* <![CDATA[ */
var monsterinsights_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[]","home_url":"https:\/\/www.wdg.fi","hash_tracking":"false","ua":"UA-126958892-1","v4_id":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.wdg.fi/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js?ver=8.1.0' id='monsterinsights-frontend-script-js'></script>
<script type='text/javascript' src='https://www.wdg.fi/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script>
<script type='text/javascript' src='https://www.wdg.fi/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script>
<script type='text/javascript' src='https://www.wdg.fi/wp-content/plugins/responsive-poll/public/assets/js/vendors/excanvas.js?ver=1.7.12' id='weblator_polling-canvas-js'></script>
<script type='text/javascript' src='https://www.wdg.fi/wp-content/plugins/tribe-ext-event-progress-bar/src/event-progress-bar.js?ver=5.8.1' id='tribe-ext-event-progress-bar-script-js'></script>
<script type='text/javascript' src='https://www.wdg.fi/wp-content/plugins/simple-social-icons/svgxuse.js?ver=1.1.21' id='svg-x-use-js'></script>
<!-- Google Analytics snippet added by Site Kit -->
<script type='text/javascript' src='https://www.googletagmanager.com/gtag/js?id=UA-126958892-1' id='google_gtagjs-js' async></script>
<script type='text/javascript' id='google_gtagjs-js-after'>
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag('set', 'linker', {"domains":["www.wdg.fi"]} );
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "UA-126958892-1", {"anonymize_ip":true});
</script>
<!-- End Google Analytics snippet added by Site Kit -->
<script type='text/javascript' id='foobox-free-min-js-before'>
/* Run FooBox FREE (v2.7.16) */
var FOOBOX = window.FOOBOX = {
ready: true,
disableOthers: false,
o: {wordpress: { enabled: true }, excludes:'.fbx-link,.nofoobox,.nolightbox,a[href*="pinterest.com/pin/create/button/"]', affiliate : { enabled: false }, error: "Could not load the item"},
selectors: [
".gallery", ".wp-block-gallery", ".wp-block-image", "a:has(img[class*=wp-image-])", ".post a:has(img[class*=wp-image-])", ".foobox"
],
pre: function( $ ){
// Custom JavaScript (Pre)
},
post: function( $ ){
// Custom JavaScript (Post)
// Custom Captions Code
},
custom: function( $ ){
// Custom Extra JS
}
};
</script>
<script type='text/javascript' src='https://www.wdg.fi/wp-content/plugins/foobox-image-lightbox/free/js/foobox.free.min.js?ver=2.7.16' id='foobox-free-min-js'></script>
<link rel="https://api.w.org/" href="https://www.wdg.fi/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.wdg.fi/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.wdg.fi/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.8.1" />
<!-- Custom Facebook Feed JS vars -->
<script type="text/javascript">
var cffsiteurl = "https://www.wdg.fi/wp-content/plugins";
var cffajaxurl = "https://www.wdg.fi/wp-admin/admin-ajax.php";
var cfflinkhashtags = "false";
</script>
<meta name="generator" content="Site Kit by Google 1.44.0" /> <script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};t=l.createElement(r);t.async=1;
t.src="https://www.clarity.ms/tag/"+i+"?ref=wordpress";y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "5f3l55o1gu");
</script>
<style>
@media (min-width: 600px)
{
.scroll-back-to-top-wrapper {
position: fixed;
opacity: 0;
visibility: hidden;
overflow: hidden;
text-align: center;
z-index: 99999999;
background-color: #777777;
color: #eeeeee;
width: 40px;
height: 38px;
line-height: 38px;
right: 10px;
bottom: 10px;
padding-top: 2px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.scroll-back-to-top-wrapper:hover {
background-color: #000000;
color: #dd3333;
}
.scroll-back-to-top-wrapper.show {
visibility:visible;
cursor:pointer;
opacity: 0.5;
}
.scroll-back-to-top-wrapper i.fa {
line-height: inherit;
}
.scroll-back-to-top-wrapper .fa-lg {
vertical-align: 0;
}
}
</style><style type="text/css">
.wp-post-navigation a{
text-decoration: none;
text-decoration-color: #ee2;
font:bold 18px sans-serif, PT sans;
color: #000;
}
</style><meta name="tec-api-version" content="v1"><meta name="tec-api-origin" content="https://www.wdg.fi"><link rel="https://theeventscalendar.com/" href="https://www.wdg.fi/wp-json/tribe/events/v1/" /><style type="text/css">
.ctl-bullets-container {
display: block;
position: fixed;
right: 0;
height: 100%;
z-index: 1049;
font-weight: normal;
height: 70vh;
overflow-x: hidden;
overflow-y: auto;
margin: 15vh auto;
}</style><link rel="stylesheet" href="https://www.wdg.fi/wp-content/plugins/responsive-poll/public/assets/css/notie.css"><!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QSM13XNBKB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QSM13XNBKB');
</script>
<!-- Hotjar Tracking Code for https://www.doaudit.fi -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:833447,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script><style type="text/css">.site-title a { background: url(https://www.wdg.fi/wp-content/uploads/2018/10/wdg-logo-160x160-pikselia.png) no-repeat !important; }</style>
<style type="text/css" id="gs-faq-critical">.gs-faq {padding: 5px 0;}.gs-faq__question {display: none;margin-top: 10px;text-align: left;white-space: normal;width: 100%;}.js .gs-faq__question {display: block;}.gs-faq__question:first-of-type {margin-top: 0;}.js .gs-faq__answer {display: none;padding: 5px;}.gs-faq__answer p:last-of-type {margin-bottom: 0;}.js .gs-faq__answer__heading {display: none;}.gs-faq__answer.no-animation.gs-faq--expanded {display: block;}</style> <link rel="preload" href="https://www.wdg.fi/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.woff2" as="font" crossorigin="anonymous" />
<style>
.asp_m{height: 0;} </style>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preload" as="style" href="//fonts.googleapis.com/css?family=Open+Sans:300|Open+Sans:400|Open+Sans:700&display=swap" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300|Open+Sans:400|Open+Sans:700&display=swap" media="all" />
<link rel="icon" href="https://www.wdg.fi/wp-content/uploads/2018/10/wdg-logo-300x300-pikselia-100x100.png" sizes="32x32" />
<link rel="icon" href="https://www.wdg.fi/wp-content/uploads/2018/10/wdg-logo-300x300-pikselia-250x250.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.wdg.fi/wp-content/uploads/2018/10/wdg-logo-300x300-pikselia-250x250.png" />
<meta name="msapplication-TileImage" content="https://www.wdg.fi/wp-content/uploads/2018/10/wdg-logo-300x300-pikselia-300x300.png" />
<style type="text/css" id="wp-custom-css">
/* Genesis Simple FAQ
--------------------------------------------- */
.gs-faq__question {
background: #000;
border-bottom: 0px dotted #b42b3f;
border-left: 6px solid #b42b3f;
border-right: 1px solid #b42b3f;
padding-left: 8px;
color: #f5f5f5;
padding-right: 5px;
}
.gs-faq__question:focus,
.gs-faq__question:hover {
background: transparent;
background-color: #b42b3f;
color: white;
}
.gs-faq__question::after {
content: "\f132";
font-family: "dashicons";
float: right;
}
.gs-faq__question.gs-faq--expanded::after {
content: "\f460";
} </style>
</head>
<body data-rsssl=1 class="home blog tribe-no-js custom-header header-image header-full-width full-width-content genesis-breadcrumbs-hidden top-banner-hidden half-width-entries front-page" itemscope itemtype="https://schema.org/WebPage"><ul class="genesis-skip-link"><li><a href="#genesis-content" class="screen-reader-shortcut"> Hyppää pääsisältöön</a></li></ul><div class="academy-top-banner">Kiekkosi hukassa? - <a href="https://www.wdg.fi/loytokiekot/">Myllymäki, Ravikangas ja Sorkki</a><button id="academy-top-banner-close"><span class="sp-icon-x"></span><span class="screen-reader-text">Close Top Banner</span></button></div><div class="site-container"><header class="site-header" itemscope itemtype="https://schema.org/WPHeader"><div class="wrap"><div class="title-area"><h1 class="site-title" itemprop="headline"><a href="https://www.wdg.fi/">WDG</a></h1><p class="site-description" itemprop="description">Willimiehen Disc Golf ry, WDG, frisbeegolf, Etelä-Karjala</p></div><nav class="nav-primary" aria-label="Pää" itemscope itemtype="https://schema.org/SiteNavigationElement" id="genesis-nav-primary"><div class="wrap"><ul id="menu-paavalikko" class="menu genesis-nav-menu menu-primary js-superfish"><li id="menu-item-7186" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7186"><a href="https://www.wdg.fi/index.php" itemprop="url"><span itemprop="name"><i class="fa fa-home" aria-hidden="true"></i></span></a></li>
<li id="menu-item-7257" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-7257"><a href="https://www.wdg.fi/jutut/" itemprop="url"><span itemprop="name">Jutut</span></a>
<ul class="sub-menu">
<li id="menu-item-7200" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7200"><a href="https://www.wdg.fi/kategoriat/tiedotteet/" itemprop="url"><span itemprop="name">Tiedotteet</span></a></li>
<li id="menu-item-7598" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7598"><a href="https://www.wdg.fi/kategoriat/kilpailut/" itemprop="url"><span itemprop="name">Kilpailut</span></a></li>
<li id="menu-item-7488" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7488"><a href="https://www.wdg.fi/kategoriat/team-wdg/" itemprop="url"><span itemprop="name">Team WDG</span></a></li>
<li id="menu-item-7853" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7853"><a href="https://www.wdg.fi/facebookista/" itemprop="url"><span itemprop="name">Facebookista</span></a></li>
<li id="menu-item-7397" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7397"><a href="https://www.wdg.fi/pystyyn/" itemprop="url"><span itemprop="name">Jutut aikajanalla</span></a></li>
<li id="menu-item-7398" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7398"><a href="https://www.wdg.fi/vaakaan/" itemprop="url"><span itemprop="name">Jutut vaakajanalla</span></a></li>
<li id="menu-item-7206" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7206"><a href="https://www.wdg.fi/ajankohtaista/" itemprop="url"><span itemprop="name">Jutut grid-muodossa</span></a></li>
</ul>
</li>
<li id="menu-item-7190" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-7190"><a href="https://www.wdg.fi/wdg-2/" itemprop="url"><span itemprop="name">WDG</span></a>
<ul class="sub-menu">
<li id="menu-item-7882" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7882"><a href="https://www.wdg.fi/ota-yhteytta/" itemprop="url"><span itemprop="name">Ota yhteyttä</span></a></li>
<li id="menu-item-1198" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1198"><a href="https://www.wdg.fi/yhdistys-2/" itemprop="url"><span itemprop="name">Yhdistys</span></a></li>
<li id="menu-item-9631" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9631"><a href="https://www.wdg.fi/voimassa-olevat-jasenedut/" itemprop="url"><span itemprop="name">Voimassa olevat jäsenedut</span></a></li>
<li id="menu-item-6489" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6489"><a href="https://www.wdg.fi/jasenyys/" itemprop="url"><span itemprop="name">Jäsenyys</span></a></li>
<li id="menu-item-1209" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1209"><a href="https://www.wdg.fi/saannot-ja-ohjeet/" itemprop="url"><span itemprop="name">Säännöt ja kilpailuopas</span></a></li>
<li id="menu-item-2898" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2898"><a href="https://www.wdg.fi/seuratilaukset-powergripista/" itemprop="url"><span itemprop="name">Seuratilaukset Powergripistä</span></a></li>
</ul>
</li>
<li id="menu-item-1212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1212"><a href="https://www.wdg.fi/radat2/" itemprop="url"><span itemprop="name">Radat</span></a>
<ul class="sub-menu">
<li id="menu-item-1206" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1206"><a href="https://www.wdg.fi/myllymaen-frisbeegolfrata/" itemprop="url"><span itemprop="name">Myllymäen frisbeegolfrata</span></a>
<ul class="sub-menu">
<li id="menu-item-8196" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8196"><a target="_blank" rel="noopener" href="https://www.wdg.fi/villumaen-frisbeegolfhanke" itemprop="url"><span itemprop="name">Myllymäen frisbeegolfhanke 2013</span></a></li>
</ul>
</li>
<li id="menu-item-2453" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2453"><a href="https://www.wdg.fi/radat-ravikankaan-frisbeegolfrata/" itemprop="url"><span itemprop="name">Ravikankaan frisbeegolfrata</span></a></li>
<li id="menu-item-1759" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1759"><a href="https://www.wdg.fi/sammonlahden-frisbeegolfrata/" itemprop="url"><span itemprop="name">Sammonlahden frisbeegolfrata</span></a></li>
<li id="menu-item-10537" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10537"><a href="https://www.wdg.fi/kavijamaarat-radoilla/" itemprop="url"><span itemprop="name">Kävijämäärät radoilla</span></a></li>
<li id="menu-item-1202" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1202"><a href="https://www.wdg.fi/radat-harjoitusalueet/" itemprop="url"><span itemprop="name">Harjoitusalueet</span></a></li>
</ul>
</li>
<li id="menu-item-7604" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-7604"><a href="https://www.wdg.fi/tapahtumat" itemprop="url"><span itemprop="name">Tapahtumat</span></a>
<ul class="sub-menu">
<li id="menu-item-10723" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10723"><a href="https://www.wdg.fi/tapahtumat" itemprop="url"><span itemprop="name">Tapahtumakalenteri</span></a></li>
<li id="menu-item-7967" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7967"><a href="https://www.wdg.fi/kilpailukalenteri-2019/" itemprop="url"><span itemprop="name">Kilpailutoiminta</span></a></li>
<li id="menu-item-10388" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-10388"><a href="https://www.wdg.fi/linnoitus-open-2021/" itemprop="url"><span itemprop="name">Linnoitus Open</span></a>
<ul class="sub-menu">
<li id="menu-item-10393" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10393"><a href="https://www.wdg.fi/majoitus-linnoitus-open-2021-viikonloppuna/" itemprop="url"><span itemprop="name">Majoitus Linnoitus Open 2021 viikonloppuna</span></a></li>
<li id="menu-item-9089" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9089"><a href="https://www.wdg.fi/linnoitus-open-2020/" itemprop="url"><span itemprop="name">Linnoitus Open 2020</span></a></li>
</ul>
</li>
<li id="menu-item-3797" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3797"><a href="https://www.wdg.fi/bag-tag-kisa/" itemprop="url"><span itemprop="name">Bag Tag kisa</span></a></li>
</ul>
</li>
<li id="menu-item-6648" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6648"><a href="https://www.wdg.fi/team-wdg/" itemprop="url"><span itemprop="name">Team WDG</span></a></li>
<li id="menu-item-4624" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-4624"><a href="https://www.wdg.fi/korimainokset/" itemprop="url"><span itemprop="name">Korimainokset</span></a>
<ul class="sub-menu">
<li id="menu-item-6744" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6744"><a href="https://www.wdg.fi/sorkin-korimainokset/" itemprop="url"><span itemprop="name">Sorkin radan korimainokset</span></a></li>
<li id="menu-item-6743" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6743"><a href="https://www.wdg.fi/myllymaen-korimainokset/" itemprop="url"><span itemprop="name">Myllymäen radan korimainokset</span></a></li>
<li id="menu-item-6742" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6742"><a href="https://www.wdg.fi/ravikankaan-korimainokset/" itemprop="url"><span itemprop="name">Ravikankaan radan korimainokset</span></a></li>
</ul>
</li>
<li id="menu-item-1173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1173"><a href="https://www.wdg.fi/linkit/" itemprop="url"><span itemprop="name">Linkit</span></a>
<ul class="sub-menu">
<li id="menu-item-9019" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9019"><a target="_blank" rel="noopener" href="https://www.wdg.fi/saannot2021/" itemprop="url"><span itemprop="name">Frisbeegolfin viralliset säännöt</span></a></li>
</ul>
</li>
<li id="menu-item-10722" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10722"><a href="https://www.wdg.fi/junioritoiminta/" itemprop="url"><span itemprop="name">Junioritoiminta</span></a></li>
<li id="menu-item-5581" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5581"><a href="https://www.wdg.fi/loytokiekot/" itemprop="url"><span itemprop="name">Löytökiekot</span></a></li>
<li id="menu-item-7584" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7584"><a target="_blank" rel="noopener" href="https://www.facebook.com/willimiehendiscgolf" itemprop="url"><span itemprop="name"><i class="fa fa-facebook" aria-hidden="true"></i></span></a></li>
<li id="menu-item-7585" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-7585"><a target="_blank" rel="noopener" href="https://www.instagram.com/willimiehendiscgolf" itemprop="url"><span itemprop="name"><i class="fa fa-instagram" aria-hidden="true"></i></span></a></li>
<li id="menu-item-9746" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9746"><a href="https://www.wdg.fi/english/" itemprop="url"><span itemprop="name"><img src="https://www.wdg.fi/wp-content/uploads/2020/11/gb-lippu.png"></span></a></li>
</ul></div></nav></div></header><div class="site-inner"><div class="wrap hero-section has-columns"><div class="hero-section-column left one-half first"><h2 class="hero-title">Jäsenyys ja lisenssit Suomisportista.</h2><p class="hero-description">Seuran tavoitteena on tukea ja kehittää frisbeegolfin harrastusmahdollisuuksia toiminta-alueellaan</p><a class="button primary" href="https://www.wdg.fi/junioritoiminta/">Lue junioritoiminnastamme</a><a class="button text" href="https://www.wdg.fi/saannot2021/">Frisbeegolfin säännöt</a></div><div class="hero-section-column right one-half"><div class="hero-video-container"><div style="width: 640px;" class="wp-video"><!--[if lt IE 9]><script>document.createElement('video');</script><![endif]-->
<video class="wp-video-shortcode" id="video-11018-1" width="640" height="360" poster="https://www.wdg.fi/wp-content/uploads/2020/09/ylonen-taavi-4v_team-wdg_looppikuva.png" preload="none" controls="controls"><source type="video/youtube" src="https://www.youtube.com/watch?v=U4GRfiAPOVU&_=1" /><a href="https://www.youtube.com/watch?v=U4GRfiAPOVU">https://www.youtube.com/watch?v=U4GRfiAPOVU</a></video></div></div></div></div><div class="content-sidebar-wrap"><main class="content" id="genesis-content"><h2 class="screen-reader-text">Main Content</h2><div id="front-page-1" class="front-page-1"><div class="flexible-widgets widget-area widget-full"><div class="wrap"><section id="custom_html-26" class="widget_text extendedwopts-md-center widget widget_custom_html"><div class="widget_text extendedwopts-md-center widget-wrap"><h3 class="widgettitle widget-title">Viimeiset juttumme</h3>
<div class="textwidget custom-html-widget"><!-- ========= Cool Timeline PRO 3.5.3 ========= --><div class="clt_preloader"><img alt="Preloader" src="https://www.wdg.fi/wp-content/plugins/cool-timeline-pro/assets/images/preloader.gif"></div><div style="opacity:0" id="ctl-horizontal-slider-6181527ed2e01" class="cool-timeline-horizontal white-timeline ht-design-2" date-slider="ctl-h-slider-6181527ed2e01" data-nav="nav-slider-6181527ed2e01" data-start-on="0" data-autoplay="false" data-items="3" data-rtl="false">
<div class="timeline-wrapper white-timeline-wrapper hori-items-3" ><div class="clt_carousel_slider" dir=""><ul class="ctl_h_nav" id="nav-slider-6181527ed2e01"> <li class="ht-dates-design-2" data-date="post-11011"><span class="ctl-story-time " data-date="post-11011" >8.10.2021</li> <li class="ht-dates-design-2" data-date="post-11008"><span class="ctl-story-time selected" data-date="post-11008" >5.10.2021</li> <li class="ht-dates-design-2" data-date="post-11004"><span class="ctl-story-time " data-date="post-11004" >2.10.2021</li> <li class="ht-dates-design-2" data-date="post-10999"><span class="ctl-story-time " data-date="post-10999" >22.9.2021</li> <li class="ht-dates-design-2" data-date="post-10996"><span class="ctl-story-time " data-date="post-10996" >22.9.2021</li> <li class="ht-dates-design-2" data-date="post-10961"><span class="ctl-story-time " data-date="post-10961" >26.8.2021</li> <li class="ht-dates-design-2" data-date="post-10957"><span class="ctl-story-time " data-date="post-10957" >25.8.2021</li> <li class="ht-dates-design-2" data-date="post-10953"><span class="ctl-story-time " data-date="post-10953" >25.8.2021</li> <li class="ht-dates-design-2" data-date="post-10940"><span class="ctl-story-time " data-date="post-10940" >16.8.2021</li> <li class="ht-dates-design-2" data-date="post-10752"><span class="ctl-story-time " data-date="post-10752" >7.7.2021</li> <li class="ht-dates-design-2" data-date="post-10679"><span class="ctl-story-time " data-date="post-10679" >7.6.2021</li> <li class="ht-dates-design-2" data-date="post-10425"><span class="ctl-story-time " data-date="post-10425" >18.2.2021</li> <li class="ht-dates-design-2" data-date="post-10302"><span class="ctl-story-time " data-date="post-10302" >30.1.2021</li> <li class="ht-dates-design-2" data-date="post-10126"><span class="ctl-story-time " data-date="post-10126" >8.1.2021</li> <li class="ht-dates-design-2" data-date="post-10023"><span class="ctl-story-time " data-date="post-10023" >27.12.2020</li></ul></div><div class="clt_caru_slider " dir=""><ul class="ctl_h_slides" id="ctl-h-slider-6181527ed2e01"><li data-date="timeline-post-id-11011" class="ht-design-2"><!-- .timeline-post-start--><div id="post-11011" class="timeline-post even light-grey-post icons_no post-11011 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="0" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/10/loytokiekkojen-hakua/">Löytökiekkojen hakua</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Löytökiekkojen hakua" href="https://www.wdg.fi/wp-content/uploads/2021/10/loytokiekot.jpg" class="ctl_prettyPhoto"><img width="526" height="705" src="https://www.wdg.fi/wp-content/uploads/2021/10/loytokiekot.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/10/loytokiekot.jpg 526w, https://www.wdg.fi/wp-content/uploads/2021/10/loytokiekot-300x402.jpg 300w" sizes="(max-width: 526px) 100vw, 526px" /></a></div><div class="content-details"><p>Löytökiekkoja noudettavissa seuraavasti: Myllymäen kontti (hiekkakentän vieressä) su 10.10. klo 13.15–13.45 Sorkin koppi (hiekkakentän vieressä) ti 12.10. klo 16.30–17.00 Löytökiekot löytyvät listattuna https://www.wdg.fi/loytokiekot/ Ravikankaan kiekkojen…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/10/loytokiekkojen-hakua/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-11008" class="ht-design-2"><!-- .timeline-post-start--><div id="post-11008" class="timeline-post odd light-grey-post icons_no post-11008 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="1" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/10/talkoot-sorkilla-tiistaina-12-10-klo-16-30-alkaen/">Talkoot Sorkilla tiistaina 12.10. klo 16.30 alkaen</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla tiistaina 12.10. klo 16.30 alkaen" href="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1633720184690.jpg" class="ctl_prettyPhoto"><img width="600" height="851" src="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-600x851.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-600x851.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-300x425.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-768x1089.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-1083x1536.jpg 1083w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Viimeistellään puiden suojaukset ja mikäli osanottajia on riittävästi pääsemme myös asentamaan koreja uusille väylille.</p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/talkoot/" rel="category tag">Talkoot</a>, <a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-11004" class="ht-design-2"><!-- .timeline-post-start--><div id="post-11004" class="timeline-post even light-grey-post icons_no post-11004 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="2" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/10/junioritoiminta-alkaa/">Junioritoiminta alkaa</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Junioritoiminta alkaa" href="https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta.jpg" class="ctl_prettyPhoto"><img width="600" height="600" src="https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-600x600.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-600x600.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-300x300.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-150x150.jpg 150w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-768x768.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-250x250.jpg 250w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-1536x1536.jpg 1536w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-96x96.jpg 96w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta-84x84.jpg 84w, https://www.wdg.fi/wp-content/uploads/2021/10/junnutoiminta.jpg 1920w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Junioritoiminta on täällä! Startti lauantaina 23.10. vuosina 2006–2014 syntyneille nuorille! Mukaan otetaan 60 nopeinta ilmoittautumisjärjestyksessä. Koko kauden maksu 130€, sisältää hallitreenit. Talvella hallitreenit kerran viikossa…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/10/junioritoiminta-alkaa/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10999" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10999" class="timeline-post odd light-grey-post icons_no post-10999 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="3" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/09/talkoot-sorkilla-tiistaina-5-10-klo-16-30-alkaen/">Talkoot Sorkilla tiistaina 5.10. klo 16.30 alkaen</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla tiistaina 5.10. klo 16.30 alkaen" href="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272.jpg" class="ctl_prettyPhoto"><img width="600" height="354" src="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-600x354.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-600x354.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-300x177.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-768x453.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-1536x907.jpg 1536w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272.jpg 1550w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Rakennetaan suoja-aitoja ja kiinnitetään suurimmassa osumavaarassa olevien puiden runkoihin riukuja suojaksi. Mukaan voi ottaa ruuvinvääntimen ja sahan. Myös kevyet tikkaat voivat olla hyödyksi puiden suojauksia…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/09/talkoot-sorkilla-tiistaina-5-10-klo-16-30-alkaen/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/talkoot/" rel="category tag">Talkoot</a>, <a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10996" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10996" class="timeline-post even light-grey-post icons_no post-10996 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="1" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/09/talkoot-sorkilla-torstaina-30-9-klo-16-30-alkaen/">Talkoot Sorkilla torstaina 30.9. klo 16.30 alkaen</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla torstaina 30.9. klo 16.30 alkaen" href="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1633720184690.jpg" class="ctl_prettyPhoto"><img width="600" height="851" src="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-600x851.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-600x851.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-300x425.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-768x1089.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/09/20210824_131403-e1632325245958-1083x1536.jpg 1083w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Rakennetaan suoja-aitoja ja kiinnitetään suurimmassa osumavaarassa olevien puiden runkoihin riukuja suojaksi. Mukaan voi ottaa ruuvinvääntimen ja sahan. Myös kevyet tikkaat voivat olla hyödyksi puiden suojauksia…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/09/talkoot-sorkilla-torstaina-30-9-klo-16-30-alkaen/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/talkoot/" rel="category tag">Talkoot</a>, <a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10961" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10961" class="timeline-post odd light-grey-post icons_no post-10961 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="2" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/08/rajoituksia-myllymaen-radalla-arkiaamuisin-2021-22/">Rajoituksia Myllymäen radalla arkiaamuisin 2021–22</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Rajoituksia Myllymäen radalla arkiaamuisin 2021–22" href="https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu.png" class="ctl_prettyPhoto"><img width="600" height="448" src="https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu-600x448.png" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu-600x448.png 600w, https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu-300x224.png 300w, https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu-768x574.png 768w, https://www.wdg.fi/wp-content/uploads/2021/08/FB-pstaus_rajattu.png 1080w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Myllymäen radan väyliä 1 ja 20 ei saa pelata arkisin klo 8–12 välillä. Väylien maasto on tuolloin varattu päiväkodin käyttöön. Rajoitus on voimassa koulujen lukuvuoden…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/08/rajoituksia-myllymaen-radalla-arkiaamuisin-2021-22/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10957" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10957" class="timeline-post even light-grey-post icons_no post-10957 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="3" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/08/talkoot-sorkilla-tiistaina-7-9-klo-17/">Talkoot Sorkilla tiistaina 7.9. klo 17</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla tiistaina 7.9. klo 17" href="https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125.jpg" class="ctl_prettyPhoto"><img width="600" height="525" src="https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125-600x525.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125-600x525.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125-300x263.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125-768x673.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/08/sorkki_vayla_13-e1629888345125.jpg 1272w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Viimeistellään uusien väylien tiialustojen asennukset ja kiinnitetään suurimmassa osumavaarassa olevien puiden runkoihin riukuja suojaksi. Mukaan voi ottaa ruuvinvääntimen ja sahan. Myös kevyet tikkaat voivat olla…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/08/talkoot-sorkilla-tiistaina-7-9-klo-17/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10953" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10953" class="timeline-post odd light-grey-post icons_no post-10953 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="1" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/08/talkoot-sorkilla-torstaina-2-9-klo-17/">Talkoot Sorkilla torstaina 2.9. klo 17</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla torstaina 2.9. klo 17" href="https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478.jpg" class="ctl_prettyPhoto"><img width="600" height="466" src="https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478-600x466.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478-600x466.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478-300x233.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478-768x597.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/08/kivet-e1629888528478.jpg 1237w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Rakennetaan saarekeväylän takamuuri kivistä. Saamme avuksi traktorin nostelemaan suurimpia lohkareita, mutta hienosäätöä pitää tehdä myös käsivoimin. Hyödyllisiä työvälineitä mukaan otettavaksi ovat rautakanki ja lapio.</p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/talkoot/" rel="category tag">Talkoot</a>, <a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10940" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10940" class="timeline-post even light-grey-post icons_no post-10940 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="2" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/08/talkoot-sorkilla-tiistaina-24-8-klo-17/">Talkoot Sorkilla tiistaina 24.8. klo 17</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Talkoot Sorkilla tiistaina 24.8. klo 17" href="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272.jpg" class="ctl_prettyPhoto"><img width="600" height="354" src="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-600x354.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-600x354.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-300x177.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-768x453.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272-1536x907.jpg 1536w, https://www.wdg.fi/wp-content/uploads/2021/08/20210816_194301-scaled-e1632325500272.jpg 1550w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Uusien väylien talkoilu jatkuu Sorkilla. Vuorossa heittoalustojen asennusta ja puiden suojausta. Osa alustoista on todennäköisesti kannettava viimeiset metrit sillä traktorilla ei pääse joka paikkaan aivan…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/08/talkoot-sorkilla-tiistaina-24-8-klo-17/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10752" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10752" class="timeline-post odd light-grey-post icons_no post-10752 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="3" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/07/luukas-rokkasen-klinikka-ja-haastekisa/">Luukas Rokkasen klinikka ja haastekisa</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Luukas Rokkasen klinikka ja haastekisa" href="https://www.wdg.fi/wp-content/uploads/2021/07/luukas.jpg" class="ctl_prettyPhoto"><img width="576" height="1024" src="https://www.wdg.fi/wp-content/uploads/2021/07/luukas-576x1024.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/07/luukas-576x1024.jpg 576w, https://www.wdg.fi/wp-content/uploads/2021/07/luukas-300x534.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/07/luukas-768x1367.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/07/luukas-863x1536.jpg 863w, https://www.wdg.fi/wp-content/uploads/2021/07/luukas.jpg 1151w" sizes="(max-width: 576px) 100vw, 576px" /></a></div><div class="content-details"><p>Luukas Rokkanen saapuu Lappeenrantaan 21.7.2021! Suomen fribascenen komeimmalla parralla varustettu Team Prodigyn pelaaja Luukas Rokkanen järjestää yhteistyössä WDG:n kanssa sekä klinikan että haastekilpailun! Klinikka vain…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/07/luukas-rokkasen-klinikka-ja-haastekisa/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10679" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10679" class="timeline-post even light-grey-post icons_no post-10679 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="1" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/06/uudet-bagtagit-laitetaan-jakoon/">Uudet bagtagit laitetaan jakoon</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Uudet bagtagit laitetaan jakoon" href="https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n.jpg" class="ctl_prettyPhoto"><img width="600" height="800" src="https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n-600x800.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n-600x800.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n-300x400.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n-768x1024.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n-1152x1536.jpg 1152w, https://www.wdg.fi/wp-content/uploads/2021/06/196111718_4059039457517965_7038954807513128550_n.jpg 1536w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Lue tarkasti seuraavat ohjeet: - Uuden bagtagin vaihto vanhaa vastaan maksutta, vain seuran jäsenille – Tageja aletaan jakamaan arpoen, ensin numerot 1–50, sitten 51–100 jne.…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/06/uudet-bagtagit-laitetaan-jakoon/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10425" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10425" class="timeline-post odd light-grey-post icons_no post-10425 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="2" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/02/linnoitus-open-2021/">Linnoitus Open 2021 (Siirretty)</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Linnoitus Open 2021 (Siirretty)" href="https://www.wdg.fi/wp-content/uploads/2021/02/linnoitus-open-2021-kisainfo.jpg" class="ctl_prettyPhoto"><img width="512" height="640" src="https://www.wdg.fi/wp-content/uploads/2021/02/linnoitus-open-2021-kisainfo.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/02/linnoitus-open-2021-kisainfo.jpg 512w, https://www.wdg.fi/wp-content/uploads/2021/02/linnoitus-open-2021-kisainfo-300x375.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/02/linnoitus-open-2021-kisainfo-420x525.jpg 420w" sizes="(max-width: 512px) 100vw, 512px" /></a></div><div class="content-details"><p>Kilpailu on siirretty koronan vuoksi syksyyn, uusi päivämäärä on 18.9.2021. Linnoitus Open 2021 kisainfo on nyt julkaistu! Ilmoittautuminen alkaa 1.3.2021. Tarkemmat tiedot löydät https://www.wdg.fi/linnoitus-open-2021/ .…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/02/linnoitus-open-2021/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/kilpailut/" rel="category tag">Kilpailut</a>, <a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10302" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10302" class="timeline-post even light-grey-post icons_no post-10302 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="3" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/01/kausikortti-viikkokisoihin-myynnissa-nyt/">Kausikortti viikkokisoihin myynnissä nyt!</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Kausikortti viikkokisoihin myynnissä nyt!" href="https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti.jpg" class="ctl_prettyPhoto"><img width="600" height="155" src="https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti-600x155.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti-600x155.jpg 600w, https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti-300x77.jpg 300w, https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti-768x198.jpg 768w, https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti-420x108.jpg 420w, https://www.wdg.fi/wp-content/uploads/2021/01/kausikortti.jpg 1059w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Kaudelle 2021 seura tuo uuden mahdollisuuden jäsenilleen hankkia pelioikeuden viikkokisoihin. Tue seuran toimintaa ja hanki itsellesi koko vuoden viikkokilpailuosallistumiset yhdellä kertaa koko vuodeksi (sisältäen sekä…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/01/kausikortti-viikkokisoihin-myynnissa-nyt/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10126" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10126" class="timeline-post odd light-grey-post icons_no post-10126 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="1" class="timeline-content clearfix odd full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2021/01/vuoden-2020-loytokiekkojen-viimeinen-hakupaiva/">Vuoden 2020 löytökiekkojen viimeinen hakupäivä!</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="Vuoden 2020 löytökiekkojen viimeinen hakupäivä!" href="https://www.wdg.fi/wp-content/uploads/2020/11/st1.jpg" class="ctl_prettyPhoto"><img width="600" height="240" src="https://www.wdg.fi/wp-content/uploads/2020/11/st1-600x240.jpg" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2020/11/st1-600x240.jpg 600w, https://www.wdg.fi/wp-content/uploads/2020/11/st1-300x120.jpg 300w, https://www.wdg.fi/wp-content/uploads/2020/11/st1-768x307.jpg 768w, https://www.wdg.fi/wp-content/uploads/2020/11/st1-420x168.jpg 420w, https://www.wdg.fi/wp-content/uploads/2020/11/st1.jpg 1250w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Viimeinen mahdollisuus hakea listalla olevia vuoden 2020 löytökiekkoja on sunnuntaina 17.1.2021 klo 17–19 Lauritsalan St1! Kiekot löydät osoitteesta https://www.wdg.fi/loytokiekot/ (kaikkia aiemmin syksyllä haettuja kiekkoja ei…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2021/01/vuoden-2020-loytokiekkojen-viimeinen-hakupaiva/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --><li data-date="timeline-post-id-10023" class="ht-design-2"><!-- .timeline-post-start--><div id="post-10023" class="timeline-post even light-grey-post icons_no post-10023 cat-id-1 design-2-meta"><div class="timeline-meta"></div><div id="2" class="timeline-content clearfix even full design-2-content"><h2 class="content-title"><a href="https://www.wdg.fi/2020/12/wdgn-top-5-vuonna-2020/">WDG:n TOP‑5 vuonna 2020</a></h2><div class="ctl_info event-description "><div class="full-width"><a title="WDG:n TOP‑5 vuonna 2020" href="https://www.wdg.fi/wp-content/uploads/2019/12/Top-5.png" class="ctl_prettyPhoto"><img width="600" height="346" src="https://www.wdg.fi/wp-content/uploads/2019/12/Top-5-600x346.png" class="story-img wp-post-image" alt="" loading="lazy" srcset="https://www.wdg.fi/wp-content/uploads/2019/12/Top-5-600x346.png 600w, https://www.wdg.fi/wp-content/uploads/2019/12/Top-5-300x173.png 300w, https://www.wdg.fi/wp-content/uploads/2019/12/Top-5-768x443.png 768w, https://www.wdg.fi/wp-content/uploads/2019/12/Top-5-420x242.png 420w, https://www.wdg.fi/wp-content/uploads/2019/12/Top-5.png 1040w" sizes="(max-width: 600px) 100vw, 600px" /></a></div><div class="content-details"><p>Arvoisat lukijat ja seuraajat, Mitkä olivat TOP‑5 luetuimmat jutut ja sivut WDG:n nettisivuilla vuonna 2020? Yhteenvetoa 1 – 12 / 2020 Mobiilikäyttö on se mitä tehdään iltaisin…<a class="read_more ctl_read_more" href="https://www.wdg.fi/2020/12/wdgn-top-5-vuonna-2020/">Lue lisää...</a></p>
<div class="post_meta_details"><i class="fa fa-folder-open" aria-hidden="true"></i><span class="cat-links"><span class="screen-reader-text">Kategoriat </span><a href="https://www.wdg.fi/kategoriat/tiedotteet/" rel="category tag">Tiedotteet</a></span></div></div></div></div><!-- timeline content -->
</div></li><!-- .timeline-post-end --></ul></div></div></div></div></div></section>
</div></div></div><div id="front-page-3" class="front-page-3"><div class="flexible-widgets widget-area widget-full"><div class="wrap"><section id="ff_widget-3" class="widget widget_ff_widget"><div class="widget-wrap"><h3 class="widgettitle widget-title">SOME</h3>
<link rel='stylesheet' id='ff-dynamic-css2' type='text/css' href='https://www.wdg.fi/wp-content/resources/flow-flow/css/stream-id2.css?ver=1623988622'/><!-- Flow-Flow — Social stream plugin for WordPress -->
<div class="ff-stream" data-plugin="flow_flow" id="ff-stream-2"><span class="ff-loader"><span class="ff-square" ></span><span class="ff-square"></span><span class="ff-square ff-last"></span><span class="ff-square ff-clear"></span><span class="ff-square"></span><span class="ff-square ff-last"></span><span class="ff-square ff-clear"></span><span class="ff-square"></span><span class="ff-square ff-last"></span></span></div>
<svg aria-hidden="true" style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1"><defs><symbol id="ff-icon-heart" viewBox="0 0 48 48"><path d="M34.6 3.1c-4.5 0-7.9 1.8-10.6 5.6-2.7-3.7-6.1-5.5-10.6-5.5C6 3.1 0 9.6 0 17.6c0 7.3 5.4 12 10.6 16.5.6.5 1.3 1.1 1.9 1.7l2.3 2c4.4 3.9 6.6 5.9 7.6 6.5.5.3 1.1.5 1.6.5s1.1-.2 1.6-.5c1-.6 2.8-2.2 7.8-6.8l2-1.8c.7-.6 1.3-1.2 2-1.7C42.7 29.6 48 25 48 17.6c0-8-6-14.5-13.4-14.5z"></path></symbol></defs></svg>
<script type="text/javascript" class="ff-stream-inline-js" id="ff-stream-inline-js-2">
(function () {
var timer, abortTimer;
timer = setInterval( function() {
if ( window.jQuery ) {
clearInterval( timer );
afterContentArrived( window.jQuery );
}
}, 67);
abortTimer = setTimeout( function () {
if ( !window.jQuery ) {
clearInterval( timer );
console.log('FLOW-FLOW DEBUG MESSAGE: No jQuery on page, please make sure it is loaded because jQuery is plugin requirement');
}
}, 20000);
function afterContentArrived ( $ ) {
"use strict";
var hash = '1635696234.9ac90e34475b7e44b92340a02bfbfb2fab9928b8bee264fdeb958850733a6e323677c4dd5b09ac957b8b22452d3da2a4';
var opts = window.FlowFlowOpts || {"streams":{},"open_in_new":"nope","filter_all":"Kaikki","filter_search":"Etsi","expand_text":"Laajenna","collapse_text":"Supista","posted_on":"Julkaistu","followers":"Seuraajaa","following":"Seurataan","posts":"Artikkelit","show_more":"N\u00e4yt\u00e4 enemm\u00e4n","date_style":"wpStyleDate","dates":{"Yesterday":"Eilen","s":"s","m":"m","h":"y","ago":"sitten","months":["Tam","Hel","Maa","Huh","Tou","Kes","Hei","Elo","Syy","Lok","Mar","Jou"]},"lightbox_navigate":"Navigoi nuolin\u00e4pp\u00e4imill\u00e4","view_on":"N\u00e4yt\u00e4","view_on_site":"N\u00e4yt\u00e4 sivustolla","view_all":"N\u00e4yt\u00e4 kaikki","comments":"kommentit","scroll":"Rullaa enemm\u00e4n","no_comments":"Ei viel\u00e4 kommentteja.","check_comments":"Katso kaikki kommentit","be_first":"Ole ensimm\u00e4inen!","loading":"Ladataan","server_time":1635872414,"forceHTTPS":"yep","isAdmin":false,"ajaxurl":"https:\/\/www.wdg.fi\/wp-admin\/admin-ajax.php","isLog":false,"plugin_base":"https:\/\/www.wdg.fi\/wp-content\/plugins\/flow-flow","plugin_ver":"4.8.7","domain":"www.wdg.fi","token":""};
var isLS = isLocalStorageNameSupported();
var FF_resource = window.FF_resource ||
{
scriptDeferred: $.Deferred(),
styleDeferred: $.Deferred(),
scriptLoading: false,
styleLoading: false
};
if ( !window.FF_resource ) window.FF_resource = FF_resource;
if ( !window.FlowFlowOpts ) window.FlowFlowOpts = opts;
var data = {
'shop': 'www.wdg.fi',
'action': 'fetch_posts',
'stream-id': '2',
'disable-cache': '',
'hash': hash,
'page': '0',
'preview': '0',
'token': '',
'boosted': '0'
};
var isMobile = /android|blackBerry|iphone|ipad|ipod|opera mini|iemobile/i.test( navigator.userAgent );
var streamOpts = {"name":"wdg facebook ja instagram","cloud":"nope","mod":"nope","order":"compareByTime","posts":"30","page-posts":"8","cache":"yep","cache_lifetime":"10","gallery":"yep","gallery-type":"classic","private":"nope","hide-on-desktop":"nope","hide-on-mobile":"nope","max-res":"nope","show-only-media-posts":"nope","titles":"nope","hidemeta":"nope","hidetext":"nope","headingcolor":"rgb(59, 61, 64)","subheadingcolor":"rgb(114, 112, 114)","hhalign":"center","bgcolor":"rgb(240, 240, 240)","filter":"yep","filtercolor":"rgb(205, 205, 205)","mobileslider":"nope","viewportin":"yep","width":"260","margin":"20","layout":"masonry","theme":"classic","gc-style":"style-1","upic-pos":"centered-big","upic-style":"round","bradius":"15","icon-style":"label2","icon-col":"colored","cardcolor":"rgb(255, 255, 255)","namecolor":"rgb(59, 61, 64)","textcolor":"rgb(131, 141, 143)","linkscolor":"rgb(94, 159, 202)","restcolor":"rgb(132, 118, 129)","shadow":"rgba(0, 0, 0, 0.05)","bcolor":"rgba(0, 0, 0, 0.75)","talign":"left","icons-style":"outline","cards-num":"3","scrolltop":"yep","c-desktop":"4","c-laptop":"4","c-tablet-l":"2","c-tablet-p":"2","c-smart-l":"2","c-smart-p":"1","s-desktop":"25","s-laptop":"15","s-tablet-l":"10","s-tablet-p":"10","s-smart-l":"15","s-smart-p":"15","m-c-desktop":"4","m-c-laptop":"4","m-c-tablet-l":"3","m-c-tablet-p":"2","m-c-smart-l":"2","m-c-smart-p":"1","m-s-desktop":"25","m-s-laptop":"15","m-s-tablet-l":"10","m-s-tablet-p":"10","m-s-smart-l":"15","m-s-smart-p":"15","j-h-desktop":"260","j-h-laptop":"240","j-h-tablet-l":"220","j-h-tablet-p":"200","j-h-smart-l":"180","j-h-smart-p":"160","j-s-desktop":"0","j-s-laptop":"0","j-s-tablet-l":"0","j-s-tablet-p":"0","j-s-smart-l":"0","j-s-smart-p":"0","c-r-desktop":"2","c-r-laptop":"2","c-r-tablet-l":"2","c-r-tablet-p":"2","c-r-smart-l":"2","c-r-smart-p":"2","c-c-desktop":"5","c-c-laptop":"4","c-c-tablet-l":"3","c-c-tablet-p":"3","c-c-smart-l":"2","c-c-smart-p":"2","c-s-desktop":"0","c-s-laptop":"0","c-s-tablet-l":"0","c-s-tablet-p":"0","c-s-smart-l":"0","c-s-smart-p":"0","c-arrows-always":"yep","c-arrows-mob":"nope","c-dots":"yep","c-dots-mob":"nope","wallvm":"20","wallhm":"0","wallcomments":"yep","g-ratio-w":"1","g-ratio-h":"2","g-ratio-img":"1\/2","g-overlay":"nope","m-overlay":"nope","template":["image","header","text","meta"],"tv":"nope","tv-int":"5","big":"nope","id":"2","last_changes":1623988622,"status":"1","feeds":[{"id":"tw64707","errors":[],"status":"1","enabled":"yep","last_update":"marras 2 16:40","cache_lifetime":"60","system_enabled":"1","boosted":"nope","timeline-type":"user_timeline","content":"willimiehendiscgolf","api-type":"official2","posts":"10","mod":"nope","type":"instagram","include":"","filter-by-words":""},{"id":"iq66756","errors":[],"status":"1","enabled":"yep","last_update":"marras 2 16:40","cache_lifetime":"60","system_enabled":"1","boosted":"nope","timeline-type":"page_timeline","content":"willimiehendiscgolf","posts":"10","mod":"nope","type":"facebook","include":"","filter-by-words":""}],"preview":false};
var ads = false;
streamOpts.shop = data.shop;
streamOpts.plugin = 'flow_flow';
streamOpts.trueLayout = streamOpts.layout;
/*we will modify 'grid' layout to get 'carousel' layout*/
if ( streamOpts.layout == 'carousel' ) {
streamOpts['layout'] = 'grid';
streamOpts['g-ratio-h'] = "1";
streamOpts['g-ratio-img'] = "1/2";
streamOpts['g-ratio-w'] = "1";
streamOpts['g-overlay'] = "yep";
streamOpts['c-overlay'] = "yep";
streamOpts['s-desktop'] = "0";
streamOpts['s-laptop'] = "0";
streamOpts['s-smart-l'] = "0";
streamOpts['s-smart-p'] = "0";
streamOpts['s-tablet-l'] = "0";
streamOpts['s-tablet-p'] = "0";
}
else if ( streamOpts.layout == 'list' ) { /*the same with list, we only need news feed style*/
streamOpts['layout'] = 'masonry';
}
if ( ads ) streamOpts.ads = ads;
opts.streams['stream' + streamOpts.id] = streamOpts;
var $cont = $("[data-plugin='flow_flow']#ff-stream-"+data['stream-id']);
var ajaxDeferred;
var script, style;
var layout_pre = streamOpts.layout.charAt(0);
var isOverlay = layout_pre === 'j' || streamOpts[layout_pre + '-overlay'] === 'yep' && streamOpts.trueLayout !== 'list';
var imgIndex;
if (isOverlay) {
if (streamOpts.template[0] !== 'image') {
for (var i = 0, len = streamOpts.template.length; i < len; i++) {
if (streamOpts.template[i] === 'image') imgIndex = i;
}
streamOpts.template.splice(0, 0, streamOpts.template.splice(imgIndex, 1)[0]);
}
streamOpts.isOverlay = true;
};
if (FF_resource.scriptDeferred.state() === 'pending' && !FF_resource.scriptLoading) {
script = document.createElement('script');
script.src = "https://www.wdg.fi/wp-content/plugins/flow-flow/js/public.js?ver=4.8.7";
script.onload = function( script, textStatus ) {
FF_resource.scriptDeferred.resolve();
};
document.body.appendChild(script);
FF_resource.scriptLoading = true;
};
if (FF_resource.styleDeferred.state() === 'pending' && !FF_resource.styleLoading) {
style = document.createElement('link');
style.type = "text/css";
style.id = "ff_style";
style.rel = "stylesheet";
style.href = "https://www.wdg.fi/wp-content/plugins/flow-flow/css/public.css?ver=4.8.7";
style.media = "screen";
style.onload = function( script, textStatus ) {
FF_resource.styleDeferred.resolve();
};
document.getElementsByTagName("head")[0].appendChild(style);
FF_resource.styleLoading = true;
}
$cont.addClass('ff-layout-' + streamOpts.trueLayout);
if (!isMobile && streamOpts.trueLayout !== 'carousel') $cont.css('minHeight', '500px');
ajaxDeferred = isLS && sessionStorage.getItem(hash) ? {} : $.get(opts.ajaxurl, data)
;
$.when( ajaxDeferred, FF_resource.scriptDeferred, FF_resource.styleDeferred ).done(function ( data ) {
var response, $errCont, err;
var moderation = 0;
var original = (isLS && sessionStorage.getItem(hash)) ? JSON.parse( sessionStorage.getItem(hash) ) : data[0];
try {
/* response = JSON.parse(original); */
response = original; /* since 4.1 */
} catch (e) {
window.console && window.console.log('Flow-Flow gets invalid data from server');
if (opts.isAdmin || opts.isLog) {
$errCont = $('<' + 'div class="ff-errors"><' + 'div class="ff-disclaim">If you see this message then you have administrator permissions and Flow-Flow got invalid data from server. Please provide error message below if you are doing support request.<' + '/div><' + 'div class="ff-err-info"><'+'/div><'+'/div>');
$cont.before($errCont);
$errCont.find('.ff-err-info').html(original == '' ? 'Empty response from server' : original);
}
return;
}
if ( ! response ) {
console.log( 'FLOW-FLOW: null response from server' );
return;
}
// injecting ads for cloud streams
if ( ads ) {
var newArr = [];
var post, ad;
for ( var i = 0, len = response.items.length; i < len; i++ ) {
post = response.items[ i ];
if ( ads[ i ] ) {
ad = ads[ i ];
ad.id = 'ad_el_' + ad.id;
newArr.push ( ad );
delete ads[ i ];
}
newArr.push( post );
}
response.items = newArr;
}
opts.streams['stream' + streamOpts.id]['items'] = response;
if (!FlowFlowOpts.dependencies) FlowFlowOpts.dependencies = {};
FlowFlow.extensionResourcesRequests = FlowFlow.extensionResourcesRequests || [];
var request, extension, style;
for ( extension in FlowFlowOpts.dependencies ) {
if ( FlowFlowOpts.dependencies[extension] && FlowFlowOpts.dependencies[extension] !== 'loaded') {
request = $.getScript( opts.plugin_base + '-' + extension + '/js/ff_' + extension + '_public.js?ver=4.8.7');
FlowFlow.extensionResourcesRequests.push(request);
style = document.createElement('link');
style.type = "text/css";
style.rel = "stylesheet";
style.id = "ff_ad_style";
style.href = opts.plugin_base + '-' + extension + '/css/ff_' + extension + '_public.css?ver=4.8.7';
style.media = "screen";
document.getElementsByTagName("head")[0].appendChild(style);
FlowFlowOpts.dependencies[extension] = 'loaded';
}
}
var resourcesLoaded = $.when.apply($, FlowFlow.extensionResourcesRequests);
resourcesLoaded.done(function(){
var $stream, width;
console.log('FLOW-FLOW data', response);
$stream = FlowFlow.buildStreamWith(response, streamOpts, moderation, FlowFlowOpts.dependencies);
if (isLS && response.items.length > 0 && response.hash.length > 0) sessionStorage.setItem( response.hash , JSON.stringify( original ));
var num = streamOpts.layout === 'compact' || (streamOpts.mobileslider === 'yep' && isMobile)? (streamOpts.mobileslider === 'yep' ? 3 : streamOpts['cards-num']) : false;
$cont.append( $stream );
if ( typeof $stream !== 'string' ) {
FlowFlow.setupGrid($cont.find('.ff-stream-wrapper'), num, streamOpts.scrolltop === 'yep', streamOpts.gallery === 'yep', streamOpts, $cont);
}
setTimeout(function(){
$cont.find('.ff-header').removeClass('ff-loading').end().find('.ff-loader').addClass('ff-squeezed').delay(300).hide();
}, 0);