Une année en immersion
Tous les élèves du secondaire I (cycle d'orientation / CO) ont la possibilité d'effectuer une année en immersion dans l'autre région linguistique du canton: dans un cycle d'orientation (Orientierungsschule / OS) du Haut-Valais, au Kollegium Spiritus Sanctus de Brigue ou à l'Oberwalliser Mittelschule St. Ursula de Brigue (en section HMS = Ecole de commerce / en section FMS = Ecole de culture générale ou SfB =EPP).
Les frais d'écolage et de transport
Toutes les informations utiles quand aux frais d'écolage et de transport liés à une année en immersion sont inscrites dans la directive, tout particulièrement les articles 6 et 7 (disponible ci-après). Pour de plus amples informations, nous vous laissons contacter la responsable du BEL.
Hébergement pendant une année en immersion:
Les élèves en immersion sont soit :
- pendulaire : l'élève fait les trajets de l'école à la maison tous les jours.
- famille d'accueil: le jeune est accueilli par une famille / une personne dans le Haut-Valais du dimanche soir au vendredi midi, les frais sont fixés entre les deux familles.
Nous vous conseillons de prendre contact avec la Direction de l'école que votre enfant va fréquenter, qui pourra vous renseigner si des familles / personnes sont disponibles dans la région. Si tel n'est pas le cas, nous vous laissons contacter le BEL, à l'adresse suivante : bel-bsa@admin.vs.ch.
- internat du Kollegium Spiritus Sanctus: cette structure accueille des étudiants du secondaire I et II. Plus d'information ici
Soirée information
The following has evaluated to null or missing: ==> cur_docgroup.DocumentsAndLinks [in template "10155#10193#DOCUMENTS-ET-LIENS" at line 29, column 22] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #if cur_docgroup.DocumentsAndLinks.ge... [in template "10155#10193#DOCUMENTS-ET-LIENS" at line 29, column 17] ----
1<#assign articleId = .vars['reserved-article-id'].data />
2<#assign articleTitle = .vars['reserved-article-title'].data />
3<#assign articleDescription = .vars['reserved-article-description'].data />
4<#assign articleImage = .vars['reserved-article-small-image-url'].data />
5
6
7<#assign DLFileEntryLocalService = serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService") />
8
9
10<liferay-ui:icon
11 symbol:'folder'
12 message='test'
13/>
14
15<div class="ivs-documents">
16 <#if displayTitle.getData()?trim !="" || articleDescription?replace('<[^>]+>','','r')?trim != "">
17 <#if displayTitle.getData()?trim !="">
18 <h2 class="h4 mb-3 text-uppercase ivs-h-upperline">${displayTitle.getData()}</h2>
19 </#if>
20 </#if>
21 <div class="mb-3">
22 <#if docgroup.getSiblings()?has_content>
23
24 <#list docgroup.getSiblings() as cur_docgroup>
25 <#if cur_docgroup.getData()?trim !="" >
26 <h3 class="h4 mb-2">${cur_docgroup.getData()}</h3>
27 </#if>
28
29 <#if cur_docgroup.DocumentsAndLinks.getSiblings()?has_content>
30 <ul>
31
32 <#list cur_docgroup.DocumentsAndLinks.getSiblings() as cur_documentsAndLinks>
33 <li>
34 <#if getterUtil.getBoolean(cur_documentsAndLinks.document.targetBlank.getData())>
35 <#assign target='target="_blank"' />
36 <#else>
37 <#assign target="" />
38 </#if>
39
40
41
42
43 <#if cur_documentsAndLinks.URL.getData()?trim !="">
44 <#if getterUtil.getBoolean(cur_documentsAndLinks.document.targetBlank.getData())>
45 <#assign target='target="_blank"' />
46 <#else>
47 <#assign target="" />
48 </#if>
49
50 <#-- For urls -->
51 <#if cur_documentsAndLinks.TitleOptional.getData()?trim !="">
52 <#assign elementTitle = cur_documentsAndLinks.TitleOptional.getData() />
53 <#else>
54 <#assign elementTitle = cur_documentsAndLinks.URL.getData()/>
55 </#if>
56 <a href="${cur_documentsAndLinks.URL.getData()}" class="matomo_download" ${target}>
57 ${elementTitle} <@accessibleWarning />
58 </a>
59
60 <#else>
61
62 <#-- For documents -->
63 <#if cur_documentsAndLinks.document.data?trim !="">
64
65 <#attempt>
66 <#assign jsonDoc = jsonFactoryUtil.createJSONObject(cur_documentsAndLinks.document.data) />
67
68 <#assign doc=DLFileEntryLocalService.getDLFileEntryByUuidAndGroupId(jsonDoc.uuid,jsonDoc.groupId?number) />
69 <#recover>
70 <#-- Ne rien faire ou log si besoin -->
71 </#attempt>
72
73 <#if doc??>
74
75
76 <#if cur_documentsAndLinks.TitleOptional.getData()?trim !="">
77 <#assign elementTitle = cur_documentsAndLinks.TitleOptional.getData() />
78 <#else>
79 <#assign elementTitle = doc.title />
80 </#if>
81
82 <#if getterUtil.getBoolean(cur_documentsAndLinks.document.targetBlank.getData())>
83 <#assign target='target="_blank"' />
84 <#else>
85 <#assign target="" />
86 </#if>
87
88
89 <#if cur_docgroup.DocumentsAndLinks.getSiblings()?size gt 1 >
90 <a href="${cur_documentsAndLinks.document.getData()+'&v='+doc.getVersion()}" ${target} class="matomo_download" >
91 ${elementTitle} <@accessibleWarningDownload />
92 </a>
93 <#else>
94 <a href="${cur_documentsAndLinks.document.getData()+'&v='+doc.getVersion()}" ${target} class="d-block mb-3 matomo_download">
95 ${elementTitle} <@accessibleWarningDownload />
96 </a>
97 </#if>
98 </#if>
99
100 </#if>
101
102
103 </#if>
104
105
106
107
108 </li>
109
110 </#list>
111
112 </ul>
113
114
115
116 </#if>
117 </#list>
118 </#if>
119 </div>
120
121</div>
122
123<#macro accessibleWarningDownload>
124 <#local windowWarnText = "Download"/>
125 <#if locale == "fr_FR">
126 <#local windowWarnText = "téléchargement"/>
127 <#elseif locale == "de_DE">
128 <#local windowWarnText = "Download"/>
129 </#if>
130
131 <small role="presentation" class="text-secondary">
132 <@clay["icon"] symbol="download" />
133 </small>
134
135
136
137
138
139
140 <span class="taglib-text sr-only">(${windowWarnText})</span>
141
142
143</#macro>
144
145<#macro accessibleWarning>
146 <#local windowWarnText = "External link"/>
147 <#if locale == "fr_FR">
148 <#local windowWarnText = "Lien externe"/>
149 <#elseif locale == "de_DE">
150 <#local windowWarnText = "Externer Link"/>
151 </#if>
152
153 <small role="presentation" class="text-secondary"><@clay["icon"] symbol="link" /></small>
154 <span class="taglib-text sr-only">(${windowWarnText})</span>
155
156
157</#macro>