-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFAQ.html
1513 lines (1511 loc) · 56.3 KB
/
FAQ.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html style="font-size: 16px" lang="nl">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta name="keywords" content="FAQ" />
<meta name="description" content="" />
<title>FAQ</title>
<link rel="stylesheet" href="nicepage.css" media="screen" />
<link rel="stylesheet" href="FAQ.css" media="screen" />
<script
class="u-script"
type="text/javascript"
src="jquery-1.9.1.min.js"
defer=""
></script>
<script
class="u-script"
type="text/javascript"
src="nicepage.js"
defer=""
></script>
<meta name="generator" content="Nicepage 5.18.2, nicepage.com" />
<link
id="u-theme-google-font"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i"
/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "PETS",
"logo": "images/logo.png"
}
</script>
<meta name="theme-color" content="#478ac9" />
<meta property="og:title" content="FAQ" />
<meta property="og:type" content="website" />
<meta data-intl-tel-input-cdn-path="intlTelInput/" />
</head>
<body data-path-to-root="./" class="u-body u-xl-mode" data-lang="nl">
<header class="u-clearfix u-header u-header" id="sec-1f15">
<div
class="u-clearfix u-sheet u-valign-middle-lg u-valign-middle-sm u-valign-middle-xxl u-sheet-1"
>
<a
href="#"
class="u-image u-logo u-image-1"
data-image-width="900"
data-image-height="885"
>
<img src="images/logo.png" class="u-logo-image u-logo-image-1" />
</a>
<nav class="u-menu u-menu-one-level u-offcanvas u-menu-1">
<div
class="menu-collapse"
style="font-size: 1rem; letter-spacing: 0px"
>
<a
class="u-button-style u-custom-left-right-menu-spacing u-custom-padding-bottom u-custom-text-active-color u-custom-top-bottom-menu-spacing u-nav-link u-text-active-palette-1-base u-text-custom-color-1 u-text-hover-palette-2-base"
href="#"
>
<svg class="u-svg-link" viewBox="0 0 24 24">
<use
xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="#menu-hamburger"
></use>
</svg>
<svg
class="u-svg-content"
version="1.1"
id="menu-hamburger"
viewBox="0 0 16 16"
x="0px"
y="0px"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<rect y="1" width="16" height="2"></rect>
<rect y="7" width="16" height="2"></rect>
<rect y="13" width="16" height="2"></rect>
</g>
</svg>
</a>
</div>
<div class="u-custom-menu u-nav-container">
<ul class="u-nav u-unstyled u-nav-1">
<li class="u-nav-item">
<a
class="u-button-style u-nav-link u-text-active-custom-color-1 u-text-hover-palette-2-base"
href="Home.html"
style="padding: 10px 20px"
>Home</a
>
</li>
<li class="u-nav-item">
<a
class="u-button-style u-nav-link u-text-active-custom-color-1 u-text-hover-palette-2-base"
href="Wat-is-PETS.html"
style="padding: 10px 20px"
>Wat is P.E.T.S?</a
>
</li>
<li class="u-nav-item">
<a
class="u-button-style u-nav-link u-text-active-custom-color-1 u-text-hover-palette-2-base"
href="Inschrijven.html"
style="padding: 10px 20px"
>Inschrijven</a
>
</li>
<li class="u-nav-item">
<a
class="u-button-style u-nav-link u-text-active-custom-color-1 u-text-hover-palette-2-base"
href="Contact.html"
style="padding: 10px 20px"
>Contact</a
>
</li>
</ul>
</div>
<div class="u-custom-menu u-nav-container-collapse">
<div
class="u-container-style u-custom-color-1 u-inner-container-layout u-opacity u-opacity-90 u-sidenav"
>
<div class="u-inner-container-layout u-sidenav-overflow">
<div class="u-menu-close"></div>
<ul
class="u-align-center u-custom-font u-heading-font u-nav u-popupmenu-items u-text-white u-unstyled u-nav-2"
>
<li class="u-nav-item">
<a class="u-button-style u-nav-link" href="Home.html"
>Home</a
>
</li>
<li class="u-nav-item">
<a class="u-button-style u-nav-link" href="Wat-is-PETS.html"
>Wat is P.E.T.S?</a
>
</li>
<li class="u-nav-item">
<a class="u-button-style u-nav-link" href="Inschrijven.html"
>Inschrijven</a
>
</li>
<li class="u-nav-item">
<a class="u-button-style u-nav-link" href="Contact.html"
>Contact</a
>
</li>
</ul>
</div>
</div>
<div class="u-black u-menu-overlay u-opacity u-opacity-70"></div>
</div>
</nav>
<a
href="https://login.petsproject.nl"
class="u-btn u-button-style u-custom-color-1 u-custom-font u-heading-font u-hover-feature u-radius-50 u-btn-1"
target="_blank"
>Inloggen</a
><span
class="u-custom-color-1 u-file-icon u-hover-feature u-icon u-icon-circle u-icon-1"
data-href="https://open.spotify.com/show/0o7SuLxNOs5sfNL010KYn2"
data-target="_blank"
data-animation-name=""
data-animation-duration="0"
data-animation-direction=""
><img src="images/2882877-ccc750d9.png" alt=""
/></span>
</div>
</header>
<section
class="u-align-left u-clearfix u-image u-shading u-section-1"
id="carousel_bb76"
data-image-width="1600"
data-image-height="1066"
>
<div
class="u-clearfix u-sheet u-valign-middle-md u-valign-middle-sm u-valign-middle-xs u-sheet-1"
>
<h2 class="u-align-center u-text u-text-default u-text-1">FAQ</h2>
<p class="u-align-center u-text u-text-2">
Hieronder vindt u veelgestelde vragen
</p>
<div class="u-expanded-width u-list u-list-1">
<div class="u-repeater u-repeater-1">
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-1"
>
<div
class="u-container-layout u-similar-container u-container-layout-1"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-1"
><img src="images/3138297-2479d81c.png" alt=""
/></span>
<h5 class="u-text u-text-3">
<span style="font-weight: 700"></span>Wat is het doel van
P.E.T.S.?
</h5>
<p class="u-text u-text-4">
Het lesprogramma heeft als doel om bewustwording bij de
leerlingen op te roepen, evenals het onderwerp pesten
bespreekbaar te maken en te houden. We streven naar een
veilige schoolomgeving met respect voor elkaar, waarbij iedere
leerling zichzelf mag en kan zijn.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-2"
>
<div
class="u-container-layout u-similar-container u-container-layout-2"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-2"
><img src="images/1077114-41ae8903.png" alt=""
/></span>
<h5 class="u-text u-text-5">
Wat is de doelgroep van P.E.T.S.?
</h5>
<p class="u-text u-text-6">
P.E.T.S. is bedoeld voor leerlingen van groep 7 en 8 van
de basisschool (regulier- en speciaal onderwijs) en klas 1 en
2 van de middelbare school (alle typen voortgezet onderwijs).
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-3"
>
<div
class="u-container-layout u-similar-container u-container-layout-3"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-3"
><img src="images/25333-808b38b0.png" alt=""
/></span>
<h5 class="u-text u-text-7">
Waarom heeft P.E.T.S. voor deze doelgroep gekozen?
</h5>
<p class="u-text u-text-8">
Deze doelgroep leeft zich beter in de situatie in. Ze zijn met
hun eigen ontwikkeling en identiteit bezig en hun plek in de
groep.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-4"
>
<div
class="u-container-layout u-similar-container u-container-layout-4"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-4"
><img src="images/7420995-9756e8d5.png" alt=""
/></span>
<h5 class="u-text u-text-9">
Op welke manier wordt de doelgroep betrokken bij P.E.T.S.?
</h5>
<p class="u-text u-text-10">
Door middel van het behandelen en aankaarten van actuele
thema's. Zo ontstaat er herkenning, maar ook inleving. Niet
alleen bij de interactieve films, maar ook in de bijbehorende
werkboekjes en het klassikaal gesprek.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-5"
>
<div
class="u-container-layout u-similar-container u-container-layout-5"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-5"
><img src="images/3588023-bb2cd17b.png" alt=""
/></span>
<h5 class="u-text u-text-11">Wat is de aanpak van P.E.T.S.?</h5>
<p class="u-text u-text-12">
Het lesprogramma van P.E.T.S. bestaat uit
verschillende actuele thema's die per doelgroep op maat worden
toegepast. Een thema bestaat uit een interactieve film. De
film laat situaties vanuit verschillende perspectieven zien,
die helaas veel in de praktijk voorkomen. Je komt telkens op
een keuzemoment met als algemene vraag: ‘wat zou jij
doen?’. Dit element, samen met een werkboekje (met vragen en
opdrachten) en een klassikaal gesprek, maakt het lesprogramma
uniek. Ook is er de mogelijkheid om de maker, tevens
ervaringsdeskundige, te ontvangen op school ter aanvulling of
voor begeleiding.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-6"
>
<div
class="u-container-layout u-similar-container u-container-layout-6"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-6"
><img src="images/7650384-70d5a450.png" alt=""
/></span>
<h5 class="u-text u-text-13">
Welk lesmateriaal wordt er gebruikt?
</h5>
<p class="u-text u-text-14">
Tot het lesmateriaal van P.E.T.S behoren:<br />
<br />- <a
href="http://www.petsproject.nl/"
target="_blank"
class="u-active-none u-border-none u-btn u-button-style u-hover-none u-none u-text-palette-1-base u-btn-1"
>De website</a
>
<br />- <a
href="/login"
class="u-active-none u-border-none u-btn u-button-link u-button-style u-hover-none u-none u-text-palette-1-base u-btn-2"
target="_blank"
>De E-learning module</a
>
<br />- De themafilms<br />- Een leerlingen
werkboekje per thema<br />- Een
handleiding voor docenten<br />- Enquête, ter
evaluatie
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-7"
>
<div
class="u-container-layout u-similar-container u-container-layout-7"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-7"
><img src="images/27223-31bb23a1.png" alt=""
/></span>
<h5 class="u-text u-text-15">
Welke thema’s worden er aangeboden binnen P.E.T.S.?
</h5>
<p class="u-text u-text-16">
De actuele thema’s, met bijbehorende films, zijn de basis en
tevens de kracht van het lesprogramma.<br />
<br />Onderwerpen die worden behandeld in het aanbod
voor de basisschool van het lesprogramma zijn
o.a.;<br />Anders zijn, Buiten sluiten, Gedrag, Grenzen,
Meidenvenijn en Sociale vaardigheden.<br />
<br />Onderwerpen die extra worden behandeld in het
aanbod voor de middelbare school van het
lesprogramma zijn o.a.;<br />Cyberpesten, Geaardheid,
Groepsdruk, Zelfbeeld en Zelfdoding.<br />
<br />
<a
href="https://petsproject.nl/thema.html"
class="u-active-none u-border-none u-btn u-button-style u-hover-none u-none u-text-palette-1-base u-btn-3"
>Klik hier om alle thema's van de interactieve films te
bekijken.</a
>
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-8"
>
<div
class="u-container-layout u-similar-container u-container-layout-8"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-8"
><img src="images/3114812-b78036e6.png" alt=""
/></span>
<h5 class="u-text u-text-17">
Hoeveel tijd neemt P.E.T.S. in?
</h5>
<p class="u-text u-text-18">
De duur van zowel de lessen, als de themafilms varieert. Het
is afhankelijk van de lesvorm (zelfstandig of met begeleiding
van de maker) en de themakeuze. In de handleiding van de
docent, staat per thema aangegeven hoe lang, zowel een gehele
(zelfstandige) les, als een onderdeel, als de film duurt. Bij
een les met begeleiding of nagesprek komt er extra tijd bij.
Wat deze extra tijd betreft kan er door ons een specifiekere
inschatting gemaakt worden. Daarover kunt u contact met ons
opnemen.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-9"
>
<div
class="u-container-layout u-similar-container u-container-layout-9"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-9"
><img src="images/839860-b63977a7.png" alt=""
/></span>
<h5 class="u-text u-text-19">
Wat moet ik als docent voorbereiden voor een les met P.E.T.S.?
</h5>
<p class="u-text u-text-20">
Voor de docent is er een handleiding waarmee het lesprogramma
eenvoudig te doorlopen is. Mochten er nog wel vragen of
onduidelijkheden zijn, kunt u altijd contact met ons opnemen.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-10"
>
<div
class="u-container-layout u-similar-container u-container-layout-10"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-10"
><img src="images/681494-3d6f45f5.png" alt=""
/></span>
<h5 class="u-text u-text-21">
Door wie wordt P.E.T.S. gemaakt?
</h5>
<p class="u-text u-text-22">
P.E.T.S. is bedacht en ontwikkeld door Brian op de Dijk.
Hij is ervaringsdeskundige op het gebied van pesten. Hij heeft
zich laten adviseren door mensen uit het onderwijs (bestuur,
directie, docenten), leerlingen en ouders. In de eerste
fase van het lesprogramma zijn er checks uitgevoerd door een
voormalig lerares die nu actief is in de politiek.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-11"
>
<div
class="u-container-layout u-similar-container u-container-layout-11"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-11"
><img src="images/748137-403356d5.png" alt=""
/></span>
<h5 class="u-text u-text-23">Hoe kan ik mij inschrijven?</h5>
<p class="u-text u-text-24">
Scholen kunnen zichzelf aanmelden voor deelname
aan P.E.T.S.. Ook benaderen wij zelf scholen. Soms speelt
de gemeente een rol in de deelname. Zij geven dan bijvoorbeeld
het advies aan de school om gebruik te maken
van P.E.T.S..
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-12"
>
<div
class="u-container-layout u-similar-container u-container-layout-12"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-12"
><img src="images/711628-0b6b8cab.png" alt=""
/></span>
<h5 class="u-text u-text-25">
Wanneer kan ik gebruik maken van P.E.T.S.?
</h5>
<p class="u-text u-text-26">
P.E.T.S. is in te zetten op alle scholen en verenigingen
die gebruik kunnen maken van een computer/laptop met internet,
digibord en een printmogelijkheid.<br />
<br />Daarnaast heeft u voor P.E.T.S. een licentie
nodig, waarvoor u dan een login ontvangt. Met een
gebruikersnaam en wachtwoord kan er ingelogd worden op onze
website en zo krijgt u toegang tot het lesmateriaal.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-13"
>
<div
class="u-container-layout u-similar-container u-container-layout-13"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-13"
><img src="images/563480-874653bd.png" alt=""
/></span>
<h5 class="u-text u-text-27">
Hoe lang is de licentie geldig?
</h5>
<p class="u-text u-text-28">
De licentie is tot het einde van het lopende schooljaar
geldig. Verlengen voor het volgende schooljaar kan zodra uw
licentie bijna verloopt. U krijgt hier bericht van.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-14"
>
<div
class="u-container-layout u-similar-container u-container-layout-14"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-14"
><img src="images/3170412-e5dbe504.png" alt=""
/></span>
<h5 class="u-text u-text-29">
Waarom is het interessant om de licentie te behouden?
</h5>
<p class="u-text u-text-30">
Het blijft interessant om de licentie te behouden, gezien er
ieder schooljaar een nieuwe instroom van leerlingen is.
Daarnaast wordt het lesprogramma ieder schooljaar
geactualiseerd en uitgebreid met nieuwe thema’s of onderdelen.
Dit doen we mede op basis van uw feedback, die wij vragen in
de vorm van een enquête bij gebruik van het lesprogramma.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-15"
>
<div
class="u-container-layout u-similar-container u-container-layout-15"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-15"
><img src="images/1828921-dbc7d7b8.png" alt=""
/></span>
<h5 class="u-text u-text-31">
Wat kan P.E.T.S. voor meerwaarde of toevoeging zijn op een
andere lesmethode?
</h5>
<p class="u-text u-text-32">
P.E.T.S. is niet alleen als basismethode in te zetten
tijdens uw lessen, maar kan ook een mooie aanvulling zijn op
al bestaande methodes of protocollen. Bijvoorbeeld tijdens de
Week Tegen Pesten, een activiteitenweek of op een door u
gewenst moment in het schooljaar. Het lesprogramma kan
aansluiten op andere methodes, omdat P.E.T.S. pesten
in de praktijk laat zien en zorgt voor dialoog.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-16"
>
<div
class="u-container-layout u-similar-container u-container-layout-16"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-16"
><img src="images/126473-ade847e5.png" alt=""
/></span>
<h5 class="u-text u-text-33">
Waaruit blijkt dat P.E.T.S. werkt?
</h5>
<p class="u-text u-text-34">
Duidelijk is geworden dat P.E.T.S. veel impact heeft
en het tot nadenken aanzet.<br />Deelnemende scholen zijn erg
positief over het lesprogramma. Leerlingen zijn enthousiast
over het zelf mogen kiezen van het verloop van de films.
Hierdoor zijn ze meer betrokken en worden ze bewust van
pestsituaties en de gevolgen ervan. Bij het kijken van de
themafilms is er vaak herkenning. Ook leven ze zich in, in de
karakters en/of het verhaal van de film, maar ook in elkaar.
Zo denken ze na over hun eigen gedrag en is er besef van wat
bepaalde handelingen met een ander kunnen doen.<br />Tijdens
klassikale nabespreking van een behandeld thema, ontstaan er
vaak open gesprekken. Zo ook bij schoolbezoeken, van maker en
ervaringsdeskundige Brian op de Dijk. Na het vertellen van
zijn eigen verhaal en het behandelen van een thema, stellen
leerlingen scherpe vragen en delen ook hun eigen persoonlijke
verhalen. Deze verhalen zijn vaak emotioneel en worden ook wel
één op één met hem gedeeld.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-17"
>
<div
class="u-container-layout u-similar-container u-container-layout-17"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-17"
><img src="images/10176841-1e314091.png" alt=""
/></span>
<h5 class="u-text u-text-35">
Wordt er nazorg geboden door P.E.T.S.?
</h5>
<p class="u-text u-text-36">
Duidelijk is geworden dat P.E.T.S. veel impact heeft
en het tot nadenken aanzet.<br />Deelnemende scholen zijn erg
positief over het lesprogramma. Leerlingen zijn enthousiast
over het zelf mogen kiezen van het verloop van de films.
Hierdoor zijn ze meer betrokken en worden ze bewust van
pestsituaties en de gevolgen ervan. Bij het kijken van de
themafilms is er vaak herkenning. Ook leven ze zich in, in de
karakters en/of het verhaal van de film, maar ook in elkaar.
Zo denken ze na over hun eigen gedrag en is er besef van wat
bepaalde handelingen met een ander kunnen doen.<br />Tijdens
klassikale nabespreking van een behandeld thema, ontstaan er
vaak open gesprekken. Zo ook bij schoolbezoeken, van maker en
ervaringsdeskundige Brian op de Dijk. Na het vertellen van
zijn eigen verhaal en het behandelen van een thema, stellen
leerlingen scherpe vragen en delen ook hun eigen persoonlijke
verhalen. Deze verhalen zijn vaak emotioneel en worden ook wel
één op één met hem gedeeld.
</p>
</div>
</div>
<div
class="u-align-left u-container-style u-grey-10 u-list-item u-radius-36 u-repeater-item u-shape-round u-list-item-18"
>
<div
class="u-container-layout u-similar-container u-container-layout-18"
>
<span
class="u-file-icon u-icon u-icon-circle u-palette-2-base u-text-white u-icon-18"
><img src="images/25333-808b38b0.png" alt=""
/></span>
<h5 class="u-text u-text-37">Een andere vraag?</h5>
<p class="u-text u-text-38">
Als u nog andere vragen heeft, kunt u altijd contact met ons
opnemen.
</p>
</div>
</div>
</div>
</div>
</div>
<style data-mode="XXL" data-visited="true">
@media (max-width: 0px) {
.u-section-1 {
background-image: linear-gradient(
0deg,
rgba(0, 0, 0, 0.4),
rgba(0, 0, 0, 0.4)
),
url("images/AfbeeldingvanWhatsAppop2023-03-24om16.04.20.jpg");
}
.u-section-1 .u-sheet-1 {
min-height: 2465px;
}
.u-section-1 .u-text-1 {
margin-top: 70px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
}
.u-section-1 .u-text-2 {
font-size: 1.125rem;
font-weight: 600;
font-style: normal;
width: 774px;
margin-top: 23px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
}
.u-section-1 .u-list-1 {
margin-top: 45px;
margin-left: 0;
margin-right: 0;
margin-bottom: 60px;
}
.u-section-1 .u-repeater-1 {
grid-template-columns: calc(50% - 5px) calc(50% - 5px);
min-height: 2080px;
grid-gap: 10px 10px;
}
.u-section-1 .u-list-item-1 {
background-image: none;
}
.u-section-1 .u-container-layout-1 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-1 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-3 {
font-weight: 700;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-4 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-list-item-2 {
background-image: none;
}
.u-section-1 .u-container-layout-2 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-2 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-5 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-6 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-list-item-3 {
background-image: none;
}
.u-section-1 .u-container-layout-3 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-3 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-7 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-8 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-list-item-4 {
background-image: none;
}
.u-section-1 .u-container-layout-4 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-4 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-9 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-10 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-list-item-5 {
background-image: none;
}
.u-section-1 .u-container-layout-5 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-5 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-11 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-12 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-list-item-6 {
background-image: none;
}
.u-section-1 .u-container-layout-6 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-6 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-13 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-14 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-btn-1 {
background-image: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-btn-2 {
background-image: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-list-item-7 {
background-image: none;
}
.u-section-1 .u-container-layout-7 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-7 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-15 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-text-16 {
font-style: normal;
margin-top: 12px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}
.u-section-1 .u-btn-3 {
background-image: none;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-list-item-8 {
background-image: none;
}
.u-section-1 .u-container-layout-8 {
padding-top: 21px;
padding-bottom: 21px;
padding-left: 0;
padding-right: 0;
}
.u-section-1 .u-icon-8 {
height: 64px;
width: 64px;
background-image: none;
margin-top: 23px;
margin-right: auto;
margin-bottom: 0;
margin-left: 30px;
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.u-section-1 .u-text-17 {
text-transform: none;
letter-spacing: normal;
font-weight: 700;
font-size: 1.25rem;
margin-top: -48px;
margin-right: 30px;
margin-bottom: 0;
margin-left: 124px;
}