Wystąpił błąd podczas przetwarzania szablonu.
The following has evaluated to null or missing:
==> serviceLocator.findService("pl.com.profidata.fes.event.service.EventService")  [in template "62549681845497#20120#WYDARZENIE" at line 7, column 25]

----
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: #assign eventService = serviceLocator...  [in template "62549681845497#20120#WYDARZENIE" at line 7, column 1]
----
1<#-- set freemarker locale setting to a default one to make date parsing possible --> 
2<#setting locale = localeUtil.getDefault()> 
3<#assign journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService") /> 
4<#assign dlFileEntry = serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")> 
5<#assign groupLocalService = serviceLocator.findService("com.liferay.portal.kernel.service.GroupLocalService") /> 
6<#assign layoutLocalService = serviceLocator.findService("com.liferay.portal.kernel.service.LayoutLocalService") /> 
7<#assign eventService = serviceLocator.findService("pl.com.profidata.fes.event.service.EventService") /> 
8<#assign contentType = "WYDARZENIE" /> 
9 
10<#-- parse dates --> 
11<#assign displayDate = .vars["reserved-article-display-date"].data?datetime("EEE, d MMM yyyy HH:mm:ss Z")?date> 
12 
13<#-- set freemarker locale setting back to the one which is currently used to display the site --> 
14<#setting locale = locale> 
15<#setting date_format = "iso"> 
16<#assign dateStart = dateStart.getData()?date /> 
17<#assign today = .now?date /> 
18<#assign today = .now?string("yyyy-MM-dd HH:mm:ss")?datetime("yyyy-MM-dd HH:mm:ss") /> 
19 
20<#assign uniqueId = .now?long /> 
21 
22<#assign documentTitle = .vars["reserved-article-title"].data /> 
23 
24<#if dateEnd.getData()?has_content > 
25    <#assign optionalDateEnd = dateEnd.getData()?date /> 
26</#if> 
27 
28<#if registerTime.start.getData()?has_content> 
29    <#assign optionalRegisterStart = registerTime.start.getData()?date /> 
30    <#assign optionalRegisterStart = (optionalRegisterStart?string("yyyy-MM-dd") + " 00:00:00")?datetime("yyyy-MM-dd HH:mm:ss") /> 
31</#if> 
32<#if registerTime.end.getData()?has_content> 
33    <#assign optionalRegisterEnd = registerTime.end.getData()?date /> 
34    <#assign optionalRegisterEnd = (optionalRegisterEnd?string("yyyy-MM-dd") + " 23:59:59")?datetime("yyyy-MM-dd HH:mm:ss") /> 
35</#if> 
36 
37<#assign registeredCount = eventService.getRegisteredParticipantsCount(companyId, groupId, themeDisplay.getUserId(), .vars["reserved-article-id"].data?number) /> 
38 
39<#assign isRegisterActive = false /> 
40<#if getterUtil.getBoolean(registerTime.isRegistrationTurnedOn.getData())> 
41    <#if optionalRegisterStart??> 
42        <#if optionalRegisterStart < today> 
43            <#if !optionalRegisterEnd??> 
44                <#assign isRegisterActive = true /> 
45            <#elseif optionalRegisterEnd &gt; today> 
46                <#assign isRegisterActive = true /> 
47            </#if> 
48        </#if> 
49    <#elseif optionalRegisterEnd??> 
50        <#if optionalRegisterEnd &gt; today> 
51            <#assign isRegisterActive = true /> 
52        </#if> 
53    <#else> 
54        <#assign isRegisterActive = true /> 
55    </#if> 
56</#if> 
57 
58<#assign group = groupLocalService.fetchGroup(themeDisplay.getScopeGroupId()) /> 
59<#assign layout = layoutLocalService.fetchLayoutByFriendlyURL(themeDisplay.getScopeGroupId(), false, "/wydarzenia")! /> 
60<#assign baseFriendlyURL = themeDisplay.getPathFriendlyURLPublic() + group.getFriendlyURL() /> 
61<#assign eventsPageFriendlyURL = layout?has_content?then(baseFriendlyURL + themeDisplay.getLayoutFriendlyURL(layout), "#") /> 
62<#if customEventForm?has_content> 
63    <#assign webContentData = jsonFactoryUtil.createJSONObject(customEventForm.getData())/> 
64</#if> 
65 
66<#if webContentData?? && webContentData.title??> 
67    <#assign webArticle = journalArticleLocalService.getJournalArticleByUuidAndGroupId(webContentData.uuid, themeDisplay.getScopeGroupId()) /> 
68    <#assign formId = webArticle.getArticleId() /> 
69</#if> 
70 
71<#if (addressGeoComponent.getData())??> 
72	<#assign address = jsonFactoryUtil.createJSONObject(addressGeoComponent.getData())/> 
73</#if> 
74 
75<#-- functions --> 
76<#function getCategories articleId> 
77    <#assign assetVocabularyLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetVocabularyLocalService")> 
78    <#assign assetCategoryLocalService = serviceLocator.findService("com.liferay.asset.kernel.service.AssetCategoryLocalService")> 
79 
80    <#assign categories = assetCategoryLocalService.getCategories("com.liferay.journal.model.JournalArticle", articleId?number) /> 
81 
82    <#assign vocabularies = {} /> 
83 
84    <#if categories?has_content> 
85        <#list categories as category> 
86            <#assign vocabulary = assetVocabularyLocalService.getVocabulary(category.getVocabularyId()) /> 
87 
88            <#if vocabulary.visibilityType == 0> 
89                <#if vocabularies[vocabulary.vocabularyId?string]??> 
90                    <#assign categoriesName = vocabularies[vocabulary.vocabularyId?string].categories /> 
91                <#else> 
92                    <#assign categoriesName = [] /> 
93                </#if> 
94 
95                <#assign vocabularies += 
96
97                vocabulary.vocabularyId: { 
98                'name': vocabulary.titleCurrentValue, 
99                'categories': categoriesName + [category.titleCurrentValue] 
100
101
102                /> 
103            </#if> 
104        </#list> 
105    </#if> 
106 
107    <#return vocabularies /> 
108</#function> 
109 
110<#function formatFileSize size> 
111    <#if size lt 1048576> 
112    <#-- If less than 1 MB (1 MB = 1024 * 1024 bites) --> 
113        <#assign sizeInKB = size / 1024> 
114        <#return sizeInKB?string("0.##") + " KB" /> 
115    <#else> 
116        <#assign sizeInMB = size / 1048576> 
117        <#return sizeInMB?string("0.##") + " MB" /> 
118    </#if> 
119</#function> 
120 
121<#function getFileEntryInfoFromData documentData> 
122    <#if documentData?? > 
123        <#assign dataArray = documentData?split("/") /> 
124 
125        <#if (dataArray?size >= 6) > 
126            <#assign groupId = dataArray[2]?number /> 
127            <#assign uuId = dataArray[5]?keep_before("?") /> 
128 
129            <#if (uuId?length > 0)> 
130                <#assign file = dlFileEntry.getFileEntryByUuidAndGroupId(uuId, groupId) /> 
131                <#return file /> 
132            </#if> 
133 
134            <#return null /> 
135        </#if> 
136    </#if> 
137 
138    <#return null /> 
139</#function> 
140 
141<#macro printAttachments> 
142    <#assign numOfAttachments = attachments.getSiblings() 
143    ?map(cur_attachment -> cur_attachment.getData()) 
144    ?filter(cur_attachment -> cur_attachment?has_content) 
145    ?size /> 
146    <#if numOfAttachments &gt; 0> 
147        <div class="col-lg-8 col-12"> 
148            <h3 class="documents-card-main__title documents-card-main__title--list text-semibold-2 mt-15px mb-0"><@liferay.language key="fast-article-attachments" /></h3> 
149            <ul class="list-unstyled"> 
150                <#list attachments.getSiblings() as cur_attachment> 
151                    <#if cur_attachment.getData()?has_content> 
152                        <#assign fileEntry = getFileEntryInfoFromData(cur_attachment.getData())> 
153                        <li class="row g-0"> 
154                            <div class="d-flex align-items-md-top documents-list-wrapper"> 
155                                <div> 
156                                    <button class="download-wrapper" type="button"> 
157                                        <span class="d-block download-wrapper--icon "> <svg fill="none" height="23" viewbox="0 0 19 23" width="19" xmlns="http://www.w3.org/2000/svg"> <path clip-rule="evenodd" d="M2.37498 15.8125C2.81221 15.8125 3.16665 16.1343 3.16665 16.5312V19.4062C3.16665 19.5969 3.25005 19.7797 3.39852 19.9145C3.54699 20.0493 3.74835 20.125 3.95831 20.125H15.0416C15.2516 20.125 15.453 20.0493 15.6014 19.9145C15.7499 19.7797 15.8333 19.5969 15.8333 19.4062V16.5312C15.8333 16.1343 16.1878 15.8125 16.625 15.8125C17.0622 15.8125 17.4166 16.1343 17.4166 16.5312V19.4062C17.4166 19.9781 17.1664 20.5266 16.721 20.9309C16.2756 21.3353 15.6715 21.5625 15.0416 21.5625H3.95831C3.32842 21.5625 2.72433 21.3353 2.27893 20.9309C1.83354 20.5266 1.58331 19.9781 1.58331 19.4062V16.5312C1.58331 16.1343 1.93775 15.8125 2.37498 15.8125Z" fill="#FF5F20" fill-rule="evenodd"></path> <path clip-rule="evenodd" d="M4.98187 12.4293C5.29104 12.1486 5.79229 12.1486 6.10146 12.4293L9.5 15.5148L12.8985 12.4293C13.2077 12.1486 13.709 12.1486 14.0181 12.4293C14.3273 12.71 14.3273 13.165 14.0181 13.4457L10.0598 17.0395C9.75063 17.3202 9.24937 17.3202 8.94021 17.0395L4.98187 13.4457C4.67271 13.165 4.67271 12.71 4.98187 12.4293Z" fill="#FF5F20" fill-rule="evenodd"></path> <path clip-rule="evenodd" d="M9.49998 1.4375C9.9372 1.4375 10.2916 1.7593 10.2916 2.15625V9.34375C10.2916 9.7407 9.9372 10.0625 9.49998 10.0625C9.06275 10.0625 8.70831 9.7407 8.70831 9.34375V2.15625C8.70831 1.7593 9.06275 1.4375 9.49998 1.4375Z" fill="#FF5F20" fill-rule="evenodd"></path> </svg> </span> 
158                                        <span class="visually-hidden">${languageUtil.get(themeDisplay.getLocale(), "download-to-file")}</span> 
159                                    </button> 
160                                </div> 
161                                <div class="row documents-list-wrapper__left "> 
162                                    <div class="col-12"> 
163                                        <h3 class="documents-list-wrapper__left__title"><a href="${cur_attachment.getData()}">${fileEntry.getTitle()}</a></h3> 
164                                    </div> 
165                                    <span class="col-12 documents-list-wrapper__left__info"> ${languageUtil.format(locale, "file-x", (fileEntry.getExtension())?upper_case)} &nbsp; ${formatFileSize(fileEntry.getSize())} </span> 
166                                </div> 
167                            </div> 
168                        </li> 
169                    </#if> 
170                </#list> 
171            </ul> 
172        </div> 
173    </#if> 
174</#macro> 
175 
176<#macro printCategory plName enName> 
177    <#assign vocabularies = getCategories(.vars["reserved-article-resource-prim-key"].data) /> 
178 
179    <#if vocabularies?has_content> 
180        <#list vocabularies?values as vocabulary> 
181            <div class="col-12 p-0"> 
182                <div class="d-flex flex-column"> 
183                    <#if vocabulary?has_content && (vocabulary['name'] == plName || vocabulary['name'] == enName)> 
184                        <h3 class="documents-card-left__title h4">${vocabulary['name']}</h3> 
185                        <#list vocabulary as key, value> 
186                            <#if key == 'categories' && value?is_sequence> 
187                                <div class="documents-card-left__text"> 
188                                    ${value?join("<br />")} 
189                                </div> 
190                            </#if> 
191                        </#list> 
192                    </#if> 
193                </div> 
194            </div> 
195        </#list> 
196    </#if> 
197</#macro> 
198 
199<#macro printCategories> 
200    <#assign vocabularies = getCategories(.vars["reserved-article-resource-prim-key"].data) /> 
201    <@printCategory "Temat" "Topic" /> 
202    <@printCategory "Obszar" "Area" /> 
203</#macro> 
204 
205<#macro printSaveInMine> 
206    <#if locale == "pl_PL"> 
207        <div class="publi-card-right__save publi-card-right__save--documents"> 
208            <button id="save-in-mine" data-article-id="${.vars["reserved-article-id"].data}" data-article-type="${contentType}" 
209                    type="button" class="icon-text-link-wrapper unstyled-btn"> 
210                <span class="icon-text-link-wrapper__icon"> 
211                    <svg class="my-button-icon" width="14" height="19" viewBox="0 0 14 19" fill="none" xmlns="http://www.w3.org/2000/svg"> 
212                        <path d="M1 18V1H13V3.125V18L7.27273 13.0005L1 18Z" stroke="#003399" 
213                              stroke-linecap="round" stroke-linejoin="round"/> 
214                    </svg> 
215                </span> 
216                <span class="icon-text-link-wrapper__text"> 
217                    <span class="icon-text-link-wrapper__text button-text">${languageUtil.get(locale, "save-in-mine")}</span> 
218                </span> 
219            </button> 
220        </div> 
221    </#if> 
222</#macro> 
223 
224<#macro printBasicEventHeader> 
225    <#local hasImage = image.getData()?has_content /> 
226    <#local gridCol = hasImage?then("col-12 col-lg-4", "col-12") /> 
227    <div class="row d-lg-block clearfix mt-lg-3 position-relative pb-5 pb-lg-0"> 
228        <#if hasImage> 
229            <div class="col-12 col-lg-8 float-lg-end "> 
230                <figure class="mb-3 mb-lg-0 border-12px overflow-hidden"> 
231                    <img class="object-cover" alt="${image.getAttribute("alt")}" 
232                         data-fileentryid="${image.getAttribute("fileEntryId")}" src="${image.getData()}"/> 
233                </figure> 
234            </div> 
235        </#if> 
236        <div class="${gridCol} mb-15px "> 
237            <div class="d-flex flex-wrap feux-border-top-lg-ue-blue-3px pt-lg-4"> 
238                <#if (type.getData())?has_content> 
239                    <span class="feux-label__lite-blue mr-10px"> 
240                        ${languageUtil.get(locale, "event-" + type.getData())} 
241                    </span> 
242                </#if> 
243                <#if (mode.getData())?has_content> 
244                    <span class="card-header-wrapper__status"> 
245                        ${languageUtil.get(locale, "event-" + mode.getData())} 
246                    </span> 
247                </#if> 
248            </div> 
249        </div> 
250        <header id="cardTitleHeader" class="${gridCol} "> 
251            <h2 class="card-header-wrapper__title  mb-3 me-lg-3" 
252                tabindex="0">${.vars["reserved-article-title"].data}</h2> 
253            <span class="card-header-wrapper__breadcrumb"> 
254                <a href="${baseFriendlyURL}"> 
255                    <svg width="10" height="11" viewBox="0 0 10 11" fill="none" 
256                         xmlns="http://www.w3.org/2000/svg"> 
257                        <path fill-rule="evenodd" clip-rule="evenodd" 
258                              d="M4.68595 0.185717C4.85951 0.0121504 5.14092 0.0121504 5.31449 0.185717L9.75893 4.63016C9.84228 4.71351 9.88911 4.82656 9.88911 4.94443V10.5C9.88911 10.7454 9.69012 10.9444 9.44466 10.9444H0.555773C0.310313 10.9444 0.111328 10.7454 0.111328 10.5V4.94443C0.111328 4.82656 0.158153 4.71351 0.241503 4.63016L4.68595 0.185717ZM1.00022 5.12853V10.0555H9.00022V5.12853L5.00022 1.12853L1.00022 5.12853Z" 
259                              fill="#003399"/> 
260                        <path fill-rule="evenodd" clip-rule="evenodd" 
261                              d="M4.33322 6.49997V10.5C4.33322 10.7454 4.13424 10.9444 3.88878 10.9444C3.64332 10.9444 3.44434 10.7454 3.44434 10.5V6.49997C3.44434 6.32536 3.47224 6.13924 3.55237 5.97899C3.63216 5.81941 3.81085 5.61108 4.111 5.61108H5.88878C6.18894 5.61108 6.36763 5.81941 6.44741 5.97899C6.52754 6.13924 6.55545 6.32536 6.55545 6.49997V10.5C6.55545 10.7454 6.35646 10.9444 6.111 10.9444C5.86554 10.9444 5.66656 10.7454 5.66656 10.5V6.49997H4.33322Z" 
262                              fill="#003399"/> 
263                    </svg> 
264                    <span class="visually-hidden">${languageUtil.get(locale, "go-to-home-page")}</span> 
265                </a> 
266                <svg width="5" height="8" viewBox="0 0 5 8" fill="none" 
267                     xmlns="http://www.w3.org/2000/svg"> 
268                    <path fill-rule="evenodd" clip-rule="evenodd" 
269                          d="M0.97982 0.979862C1.17508 0.7846 1.49166 0.7846 1.68693 0.979862L4.35359 3.64653C4.54886 3.84179 4.54886 4.15837 4.35359 4.35363L1.68693 7.0203C1.49167 7.21556 1.17508 7.21556 0.979821 7.0203C0.784559 6.82504 0.784559 6.50846 0.979821 6.31319L3.29293 4.00008L0.97982 1.68697C0.784558 1.49171 0.784558 1.17512 0.97982 0.979862Z" 
270                          fill="#828282"/> 
271                </svg> 
272                <a href="${eventsPageFriendlyURL}"> 
273                    <span>${languageUtil.get(locale, "events")}</span> 
274                </a> 
275            </span> 
276        </header> 
277        <div class="${gridCol} pt-5 ${hasImage?then("position-absolute bottom-0 start-0","")}"> 
278            <div class="header-bottom-arrow-bg pb-3 me-3"> 
279                <p class="mb-0 me-lg-3 card-header-wrapper__place">${displayDate?string["dd.MM.yyyy"]}</p> 
280            </div> 
281        </div> 
282    </div> 
283</#macro> 
284 
285<#macro printImportantEventHeader> 
286    <div class="event-big-card-wrapper__card w-100 poradniki-lista__card"> 
287        <div class="card-img-top"> 
288            <#if image.getData()?has_content> 
289                <img class="w-100" alt="${image.getAttribute("alt")}" 
290                     data-fileentryid="${image.getAttribute("fileEntryId")}" src="${image.getData()}"/> 
291            </#if> 
292        </div> 
293        <div class="event-big-card-wrapper__card__card-body"> 
294            <div class="card-success-story__title" aria-labelledby="cardTitlePlc "> 
295                <a href="#"> 
296                    <h2 id="cardTitlePlc" class="card-header-wrapper__title">${.vars["reserved-article-title"].data}</h2> 
297                </a> 
298                <div class="card-header-wrapper__breadcrumb mb-20px"> 
299                    <a href="${baseFriendlyURL}"> 
300                        <svg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg" class="mb-2px"> 
301                            <path fill-rule="evenodd" clip-rule="evenodd" d="M4.68595 0.185717C4.85951 0.0121504 5.14092 0.0121504 5.31449 0.185717L9.75893 4.63016C9.84228 4.71351 9.88911 4.82656 9.88911 4.94443V10.5C9.88911 10.7454 9.69012 10.9444 9.44466 10.9444H0.555773C0.310313 10.9444 0.111328 10.7454 0.111328 10.5V4.94443C0.111328 4.82656 0.158153 4.71351 0.241503 4.63016L4.68595 0.185717ZM1.00022 5.12853V10.0555H9.00022V5.12853L5.00022 1.12853L1.00022 5.12853Z" fill="#003399"/> 
302                            <path fill-rule="evenodd" clip-rule="evenodd" d="M4.33322 6.49997V10.5C4.33322 10.7454 4.13424 10.9444 3.88878 10.9444C3.64332 10.9444 3.44434 10.7454 3.44434 10.5V6.49997C3.44434 6.32536 3.47224 6.13924 3.55237 5.97899C3.63216 5.81941 3.81085 5.61108 4.111 5.61108H5.88878C6.18894 5.61108 6.36763 5.81941 6.44741 5.97899C6.52754 6.13924 6.55545 6.32536 6.55545 6.49997V10.5C6.55545 10.7454 6.35646 10.9444 6.111 10.9444C5.86554 10.9444 5.66656 10.7454 5.66656 10.5V6.49997H4.33322Z" fill="#003399"/> 
303                        </svg> 
304                        <span class="visually-hidden">Przejdź do strony głównej portalu</span> 
305                    </a> 
306                    <svg width="5" height="8" viewBox="0 0 5 8" fill="none" xmlns="http://www.w3.org/2000/svg"> 
307                        <path fill-rule="evenodd" clip-rule="evenodd" d="M0.97982 0.979862C1.17508 0.7846 1.49166 0.7846 1.68693 0.979862L4.35359 3.64653C4.54886 3.84179 4.54886 4.15837 4.35359 4.35363L1.68693 7.0203C1.49167 7.21556 1.17508 7.21556 0.979821 7.0203C0.784559 6.82504 0.784559 6.50846 0.979821 6.31319L3.29293 4.00008L0.97982 1.68697C0.784558 1.49171 0.784558 1.17512 0.97982 0.979862Z" fill="#828282"/> 
308                    </svg> 
309                    <a href="${eventsPageFriendlyURL}"> 
310                        <span>${languageUtil.get(locale, "events")}</span> 
311                    </a> 
312                </div> 
313            </div> 
314            <p id="cardDatePlc1101402375" class="card-text my-5px w-100"> 
315                <small class="card-success-story__date text-uppercase">${displayDate?string["dd.MM.yyyy"]}</small> 
316            </p> 
317        </div> 
318    </div> 
319</#macro> 
320 
321<#macro printBasicEventContent> 
322    <div class="event-card-wrapper__content"> 
323        <div class="row container" id="spotkanie-tresc"> 
324            <div class="col-12  col-lg-3 p-0"> 
325                <div class="event-card-left"> 
326                    <div class="row"> 
327                        <#if (forWhom.getData())?has_content> 
328                            <div class="col-12 p-0"> 
329                                <div class="d-flex flex-column"> 
330                                    <h3 class="event-card-left__title event-card-left__title__first-title h4">${languageUtil.get(locale, "event-for-whom")}</h3> 
331                                    <div class="event-card-left__text"> 
332                                        <span>${forWhom.getData()}</span> 
333                                    </div> 
334                                </div> 
335                            </div> 
336                        </#if> 
337                        <@printCategories /> 
338                    </div> 
339                </div> 
340            </div> 
341            <#if (description.getData())?has_content> 
342                <div class="col-12  col-lg-6 p-0"> 
343                    <div class="event-card-main me-lg-5 me-xl-0"> 
344                        <div class="d-flex flex-column p-0 widget-text me-3"> 
345                            ${description.getData()} 
346                        </div> 
347                    </div> 
348                </div> 
349            </#if> 
350            <div class="col-12  col-lg-3 d-flex justify-content-center justify-content-lg-end right-side"> 
351                <div class="event-card-right"> 
352                    <div class="row d-none d-lg-flex"> 
353                        <div class="zoom-box-desktop"> 
354                            <div class="row feux-background-blue-light zoom-box__wrapper "> 
355                                <div class="col-8 col-md-12 p-0"> 
356                                    <div class="d-flex flex-column"> 
357                                        <div class="zoom-box__title-wrapper feux-border-bottom-grey"> 
358                                            <div class="events-label-bar-wrapper row"> 
359                                                <div class=" col-12 justify-content-start mb-15px  d-flex align-items-center"> 
360                                                    <div class="events-label-bar-wrapper__date d-none d-md-flex align-items-center flex-column"> 
361                                                        <div class="events-label-bar-wrapper__date__part1 pr-10px "> 
362                                                            ${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if> 
363                                                        </div> 
364                                                        <#if !optionalDateEnd??> 
365                                                            <div class="events-label-bar-wrapper__date__part2 d-inline mt-10px ms-n1"> 
366                                                                <span class="text-lightfont-3"> ${dateStart?string["EE"]} | </span><#if (startDateHour.getData())?has_content>${startDateHour.getData()}</#if> 
367                                                            </div> 
368                                                        </#if> 
369                                                    </div> 
370                                                    <div class="events-label-bar-wrapper__date d-flex d-md-none"> 
371                                                        <div class="events-label-bar-wrapper__date__part1__mobile mr-10px"> 
372                                                            ${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if> 
373                                                        </div> 
374                                                        <#if !optionalDateEnd??> 
375                                                            <div class="events-label-bar-wrapper__date__separator__mobile"></div> 
376                                                            <div class="events-label-bar-wrapper__date__part2__mobile d-inline my-auto  d-none "> 
377                                                                <span class="text-lightfont-3"> ${dateStart?string["EE"]} | </span> 
378                                                                <span class="events-label-bar-wrapper__date__part2__mobile__time"><#if (startDateHour.getData())?has_content>${startDateHour.getData()}</#if></span> 
379                                                            </div> 
380                                                        </#if> 
381                                                    </div> 
382                                                </div> 
383                                                <div class="event-tags "> 
384                                                    <#if (noDates.getData())?has_content && (noDates.getData()?number > 0) > 
385                                                        <div class="mb-1 feux-label__blue"> 
386                                                            <#if noDates.getData()?number == 1> 
387                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-date")} 
388                                                            <#elseif noDates.getData()?number &lt; 5> 
389                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-dates-1")} 
390                                                            <#else> 
391                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-dates-2")} 
392                                                            </#if> 
393                                                        </div> 
394                                                    </#if> 
395                                                    <div class="events-label-bar-wrapper__details  col-12 mb-0  d-flex align-items-center p-0"> 
396                                                        <div class="feux-label__blue feux-border-bottom-grey"> 
397                                                            ${languageUtil.get(locale, "event-" + type.getData())} 
398                                                        </div> 
399                                                        <div class="events-label-bar-wrapper__status"> 
400                                                            ${languageUtil.get(locale, "event-" + mode.getData())} 
401                                                        </div> 
402                                                    </div> 
403                                                </div> 
404                                                <#if (dateAdditionalInfo.getData())?has_content> 
405                                                    <div class="event-time-details"> 
406                                                        <span>${dateAdditionalInfo.getData()}</span> 
407                                                    </div> 
408                                                </#if> 
409                                            </div> 
410                                        </div> 
411                                    </div> 
412                                    <#if address?has_content && address.display_name?has_content> 
413                                        <div class="col-4 col-md-12 p-0"> 
414                                                <div class="zoom-box__text d-flex flex-column "> 
415                                                        <div class="row"> 
416                                                                <div class="col-12"> 
417                                                                        <address class="my-0"> 
418                                                                                ${address.display_name} 
419                                                                        </address> 
420                                                                </div> 
421                                                        </div> 
422                                                </div> 
423                                        </div> 
424                                    </#if> 
425                                    <div class="col-12 col-md-12 p-0"> 
426                                        <#if (mode.getData())?has_content  && mode.getData() == "online" && (conferenceApp.getData())?has_content> 
427                                            <div class="zoom-logo my-3 d-none d-lg-flex"> 
428                                                <img src="${themeDisplay.getPathThemeImages()}/fes/png/${conferenceApp.getData()}_app.png" alt="${languageUtil.get(locale, "event-${conferenceApp.getData()}-alt")}"> 
429                                            </div> 
430                                        </#if> 
431                                        <#if isRegisterActive> 
432                                            <#if maxRegistrationAttempts.getData()?number <= 0 || registeredCount < maxRegistrationAttempts.getData()?number> 
433                                                <div class="zoom-box__btn"> 
434                                                    <button type="button" name="btn-name" 
435                                                            class="btn feux-btn-primary w-100 btn-navigate-to-form"> 
436                                                        ${languageUtil.get(locale, "event-take-part")} 
437                                                    </button> 
438                                                </div> 
439                                            <#elseif (maxRegistrationAttempts.getData()?number > 0) > 
440                                                <div class="feux-label-tag__gray__no-active"> 
441                                                    ${languageUtil.get(locale, "registration-ended")} 
442                                                </div> 
443                                            </#if> 
444                                        </#if> 
445                                    </div> 
446                                </div> 
447                            </div> 
448                        </div> 
449                    </div> 
450                    <#if address?has_content && address.lat?has_content && address.lng?has_content> 
451                        <div class="row event-card-right__map d-none d-lg-flex"> 
452                            <div id="map-${uniqueId}" style="height: 270px" class="d-flex justify-content-end"></div> 
453                        </div> 
454                        <script> 
455                            setupOpenStreetMap( 
456                                'map-${uniqueId}', 
457
458
459                                        "name": "", 
460                                        "latitude": "${address.lat}", 
461                                        "longitude": "${address.lng}" 
462
463                                ], 
464                                true, 
465                                '${themeDisplay.getPathThemeImages()}'); 
466                        </script> 
467                    </#if> 
468                    <div class="row"> 
469                        <div class="event-card-right__org"> 
470                            <#if (organiser.organiserName.getData())?has_content> 
471                                <h3 class="event-card-right__org__title">${languageUtil.get(locale, "event-organiser")}</h3> 
472                                <span class="event-card-right__org__name">${organiser.organiserName.getData()}</span> 
473                            </#if> 
474                            <div class="d-flex flex-column  align-items-stretch justify-content-center"> 
475                                <#if (organiser.organiserAddress.getData())?has_content && (organiser.organiserPlace.getData())?has_content> 
476                                    <div class="col-12 feux-btn-clear border-0 mb-0 text-left"> 
477                                        <svg width="26" height="34" viewBox="0 0 26 34" fill="none" 
478                                             xmlns="http://www.w3.org/2000/svg" 
479                                             class="event-card-right__org__svg mr-20px"> 
480                                            <path d="M14.2169 6.77393C13.7995 6.6348 13.3126 6.56525 12.8256 6.56525C10.1126 6.56525 7.95605 8.72177 7.95605 11.4348C7.95605 14.1479 10.1126 16.3044 12.8256 16.3044C15.5387 16.3044 17.6952 14.1479 17.6952 11.4348C17.6952 11.2261 17.6952 10.9479 17.6256 10.7392" 
481                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
482                                                  stroke-linecap="round" stroke-linejoin="round"/> 
483                                            <path d="M23.2612 11.4348C23.2612 5.66087 18.6003 1 12.8264 1C7.05247 1 2.3916 5.66087 2.3916 11.4348C2.3916 20.4783 12.8264 28.8261 12.8264 28.8261C12.8264 28.8261 23.2612 20.4783 23.2612 11.4348Z" 
484                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
485                                                  stroke-linecap="round" stroke-linejoin="round"/> 
486                                            <path d="M20.2696 27.4348C22.913 27.9913 24.6522 28.8956 24.6522 29.8695C24.6522 31.6087 19.3652 33 12.8261 33C6.28696 33 1 31.6087 1 29.8695C1 28.8956 2.66957 27.9913 5.38261 27.4348" 
487                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
488                                                  stroke-linecap="round" stroke-linejoin="round"/> 
489                                        </svg> 
490                                        <address class="mb-0 text-c-black-font text-left"> 
491                                            ${organiser.organiserAddress.getData()}<br/>${organiser.organiserPlace.getData()} 
492                                        </address> 
493                                    </div> 
494                                </#if> 
495                                <#if (organiser.organiserTelephone.getData())?has_content> 
496                                    <div class="col-12 feux-btn-clear border-0 mt-15px"> 
497                                        <svg width="27" height="25" viewBox="0 0 27 25" fill="none" 
498                                             xmlns="http://www.w3.org/2000/svg" 
499                                             class="event-card-right__org__svg mr-20px"> 
500                                            <path d="M10.8271 18.2474C11.092 17.9488 11.5796 17.2785 11.5796 17.2785C11.6315 17.2 11.7619 17.1733 11.8558 17.1677L16.1208 18.4953C16.4082 18.5723 16.613 18.8428 16.5934 19.1456C16.6145 19.1821 16.578 19.2031 16.5991 19.2395C16.5893 19.3909 16.5795 19.5424 16.5333 19.7148C16.196 21.3187 14.5463 22.4169 12.9116 22.1945C6.33645 21.326 2.17654 15.4675 3.60444 9.10378C3.94178 7.49991 5.59146 6.4017 7.22614 6.62408C7.37755 6.63384 7.55001 6.68004 7.72245 6.72625L7.77993 6.74166C8.06734 6.81867 8.23567 7.1102 8.25258 7.39198L8.06332 11.7772C8.06896 11.8711 7.98068 11.9707 7.87135 12.0338C7.87135 12.0338 7.09477 12.2878 6.66723 12.3888" 
501                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
502                                                  stroke-linejoin="round"/> 
503                                            <path d="M17.2034 13.6425C17.5017 12.6442 17.413 11.4807 16.8239 10.4603C16.2348 9.43991 15.2715 8.78133 14.2578 8.54053" 
504                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
505                                                  stroke-linejoin="round"/> 
506                                            <path d="M22.4056 15.4974C23.3286 12.9723 23.1749 10.0971 21.7442 7.61896C20.3135 5.14087 17.9003 3.57011 15.252 3.10693" 
507                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
508                                                  stroke-linejoin="round"/> 
509                                        </svg> 
510                                        <a class="text-c-black-font" href="tel:${organiser.organiserTelephone.getData()}">+${organiser.organiserTelephone.getData()}</a> 
511                                    </div> 
512                                </#if> 
513                                <#if (organiser.organiserContact.getData())?has_content> 
514                                    <div class="col-12 feux-btn-clear border-0 mt-15px" style="max-width: none"> 
515                                        <svg width="22" height="16" viewBox="0 0 22 16" fill="none" 
516                                             xmlns="http://www.w3.org/2000/svg" 
517                                             class="event-card-right__org__svg mr-20px"> 
518                                            <path d="M19.9556 15.3033H1.68283C1.10854 15.3033 0.638672 14.8334 0.638672 14.2591V1.72922C0.638672 1.15493 1.10854 0.685059 1.68283 0.685059H19.9556C20.5299 0.685059 20.9997 1.15493 20.9997 1.72922V14.2591C20.9997 14.8334 20.5299 15.3033 19.9556 15.3033Z" 
519                                                  stroke="#0A50B9" stroke-miterlimit="10" stroke-linecap="round" 
520                                                  stroke-linejoin="round"/> 
521                                            <path d="M3.24805 4.49639L10.8182 9.56055L18.0852 4.49561" stroke="#0A50B9" 
522                                                  stroke-miterlimit="10" stroke-linecap="round" 
523                                                  stroke-linejoin="round"/> 
524                                            <path d="M3.24805 12.1714H5.33636" stroke="#0A50B9" stroke-miterlimit="10" 
525                                                  stroke-linecap="round" stroke-linejoin="round"/> 
526                                        </svg> 
527                                        <a class="text-c-portal-ue-blue-font" href="mailto:${organiser.organiserContact.getData()}">${organiser.organiserContact.getData()}</a> 
528                                    </div> 
529                                </#if> 
530                            </div> 
531                        </div> 
532                    </div> 
533                </div> 
534            </div> 
535            <div class="event-card-wrapper__content__sign-up-wrapper d-lg-none"> 
536                <div class="event-card-wrapper__content__sign-up d-flex flex-column"> 
537                    <div class="event-card-wrapper__content__sign-up__date"> 
538                        <time datetime="P2D">${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if></time> 
539                    </div> 
540                    <div class="event-card-wrapper__content__sign-up__meta"> 
541                        <#if (type.getData())?has_content> 
542                            <span class="event-card-wrapper__content__sign-up__meta__type feux-label__blue"> 
543                                ${languageUtil.get(locale, "event-" + type.getData())} 
544                            </span> 
545                        </#if> 
546                        <#if (mode.getData())?has_content> 
547                            <span class="event-card-wrapper__content__sign-up__meta__isOnline"> 
548                                ${languageUtil.get(locale, "event-" + mode.getData())} 
549                            </span> 
550                        </#if> 
551                    </div> 
552                    <#if isRegisterActive> 
553                        <#if maxRegistrationAttempts.getData()?number <= 0 || registeredCount < maxRegistrationAttempts.getData()?number> 
554                            <div class="event-card-wrapper__content__sign-up__button"> 
555                                <button class="event-card-wrapper__content__sign-up__button__btn btn-navigate-to-form"> 
556                                    ${languageUtil.get(locale, "event-take-part")} 
557                                </button> 
558                            </div> 
559                        <#elseif (maxRegistrationAttempts.getData()?number > 0) > 
560                            <div class="feux-label-tag__gray__no-active"> 
561                                ${languageUtil.get(locale, "registration-ended")} 
562                            </div> 
563                        </#if> 
564                    </#if> 
565                </div> 
566            </div> 
567            <@printAttachments /> 
568        </div> 
569    </div> 
570</#macro> 
571 
572<#macro printImportantEventContent> 
573    <div class="event-big-card-wrapper__content px-0"> 
574        <div class="m-0 p-0 pl-10px row container" id="spotkanie-tresc"> 
575            <div class="col-12  col-lg-3 p-0"> 
576                <div class="event-card-left"> 
577                    <div class="row"> 
578                        <#if (forWhom.getData())?has_content> 
579                            <div class="col-12 p-0"> 
580                                <div class="d-flex flex-column"> 
581                                    <h3 class="event-card-left__title event-card-left__title__first-title h4">${languageUtil.get(locale, "event-for-whom")}</h3> 
582                                    <div class="event-card-left__text"> 
583                                        <span>${forWhom.getData()}</span> 
584                                    </div> 
585                                </div> 
586                            </div> 
587                        </#if> 
588                        <@printCategories /> 
589                    </div> 
590                </div> 
591            </div> 
592            <#if (description.getData())?has_content> 
593                <div class="col-12  col-lg-6 p-0"> 
594                    <div class="event-card-main me-lg-5 me-xl-0"> 
595                        <div class="d-flex flex-column p-0 widget-text me-3"> 
596                            ${description.getData()} 
597                        </div> 
598                    </div> 
599                </div> 
600            </#if> 
601            <div class="col-12  col-lg-3 d-flex justify-content-center justify-content-lg-end right-side"> 
602                <div class="event-card-right"> 
603                    <div class="row d-none d-lg-flex"> 
604                        <div class="zoom-box-desktop"> 
605                            <div class="row feux-background-blue-light zoom-box__wrapper "> 
606                                <div class="col-8 col-md-12 p-0"> 
607                                    <div class="d-flex flex-column"> 
608                                        <div class="zoom-box__title-wrapper feux-border-bottom-grey"> 
609                                            <div class="events-label-bar-wrapper row"> 
610                                                <div class=" col-12 justify-content-start mb-15px  d-flex align-items-center"> 
611                                                    <div class="events-label-bar-wrapper__date d-none d-md-flex align-items-center flex-column"> 
612                                                        <div class="events-label-bar-wrapper__date__part1 pr-10px "> 
613                                                            ${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if> 
614                                                        </div> 
615                                                        <#if !optionalDateEnd??> 
616                                                            <div class="events-label-bar-wrapper__date__part2 d-inline mt-10px ms-n1"> 
617                                                                <span class="text-lightfont-3"> ${dateStart?string["EE"]} | </span><#if (startDateHour.getData())?has_content>${startDateHour.getData()}</#if> 
618                                                            </div> 
619                                                        </#if> 
620                                                    </div> 
621                                                    <div class="events-label-bar-wrapper__date d-flex d-md-none"> 
622                                                        <div class="events-label-bar-wrapper__date__part1__mobile mr-10px"> 
623                                                            ${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if> 
624                                                        </div> 
625                                                        <#if !optionalDateEnd??> 
626                                                            <div class="events-label-bar-wrapper__date__separator__mobile"></div> 
627                                                            <div class="events-label-bar-wrapper__date__part2__mobile d-inline my-auto  d-none "> 
628                                                                <span class="text-lightfont-3"> ${dateStart?string["EE"]} | </span> 
629                                                                <span class="events-label-bar-wrapper__date__part2__mobile__time"><#if (startDateHour.getData())?has_content>${startDateHour.getData()}</#if></span> 
630                                                            </div> 
631                                                        </#if> 
632                                                    </div> 
633                                                </div> 
634                                                <div class="event-tags "> 
635                                                    <#if (noDates.getData())?has_content && (noDates.getData()?number > 0) > 
636                                                        <div class="mb-1 feux-label__blue"> 
637                                                            <#if noDates.getData()?number == 1> 
638                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-date")} 
639                                                            <#elseif noDates.getData()?number &lt; 5> 
640                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-dates-1")} 
641                                                            <#else> 
642                                                                +${noDates.getData()} ${languageUtil.get(locale, "event-dates-2")} 
643                                                            </#if> 
644                                                        </div> 
645                                                    </#if> 
646                                                    <div class="events-label-bar-wrapper__details  col-12 mb-0  d-flex align-items-center p-0"> 
647                                                        <div class="feux-label__blue feux-border-bottom-grey"> 
648                                                            ${languageUtil.get(locale, "event-" + type.getData())} 
649                                                        </div> 
650                                                        <div class="events-label-bar-wrapper__status"> 
651                                                            ${languageUtil.get(locale, "event-" + mode.getData())} 
652                                                        </div> 
653                                                    </div> 
654                                                </div> 
655                                                <#if (dateAdditionalInfo.getData())?has_content> 
656                                                    <div class="event-time-details"> 
657                                                        <span>${dateAdditionalInfo.getData()}</span> 
658                                                    </div> 
659                                                </#if> 
660                                            </div> 
661                                        </div> 
662                                    </div> 
663																		<#if address?has_content && address.display_name?has_content> 
664																			<div class="col-4 col-md-12 p-0"> 
665																					<div class="zoom-box__text d-flex flex-column "> 
666																							<div class="row"> 
667																									<div class="col-12"> 
668																											<address class="my-0"> 
669																													${address.display_name} 
670																											</address> 
671																									</div> 
672																							</div> 
673																					</div> 
674																			</div> 
675																		</#if> 
676                                    <div class="col-12 col-md-12 p-0"> 
677                                        <#if (mode.getData())?has_content  && mode.getData() == "online" && (conferenceApp.getData())?has_content> 
678                                            <div class="zoom-logo my-3 d-none d-lg-flex"> 
679                                                <img src="${themeDisplay.getPathThemeImages()}/fes/png/${conferenceApp.getData()}_app.png" alt="${languageUtil.get(locale, "event-${conferenceApp.getData()}-alt")}"> 
680                                            </div> 
681                                        </#if> 
682                                        <#if isRegisterActive> 
683                                            <#if maxRegistrationAttempts.getData()?number <= 0 || registeredCount < maxRegistrationAttempts.getData()?number> 
684                                                <div class="zoom-box__btn"> 
685                                                    <button type="button" name="btn-name" 
686                                                            class="btn feux-btn-primary w-100 btn-navigate-to-form"> 
687                                                        ${languageUtil.get(locale, "event-take-part")} 
688                                                    </button> 
689                                                </div> 
690                                            <#elseif (maxRegistrationAttempts.getData()?number > 0) > 
691                                                <div class="feux-label-tag__gray__no-active"> 
692                                                    ${languageUtil.get(locale, "registration-ended")} 
693                                                </div> 
694                                            </#if> 
695                                        </#if> 
696                                    </div> 
697                                </div> 
698                            </div> 
699                        </div> 
700                    </div> 
701                    <#if address?has_content && address.lat?has_content && address.lng?has_content> 
702                        <div class="row event-card-right__map d-none d-lg-flex"> 
703                            <div id="map-${uniqueId}" style="height: 270px" class="d-flex justify-content-end"></div> 
704                        </div> 
705                        <script> 
706                            setupOpenStreetMap( 
707                                'map-${uniqueId}', 
708
709
710                                        "name": "", 
711                                        "latitude": "${address.lat}", 
712                                        "longitude": "${address.lng}" 
713
714                                ], 
715                                true, 
716                                '${themeDisplay.getPathThemeImages()}'); 
717                        </script> 
718                    </#if> 
719                    <div class="row"> 
720                        <div class="event-card-right__org"> 
721                            <#if (organiser.organiserName.getData())?has_content> 
722                                <h3 class="event-card-right__org__title">${languageUtil.get(locale, "event-organiser")}</h3> 
723                                <span class="event-card-right__org__name">${organiser.organiserName.getData()}</span> 
724                            </#if> 
725                            <div class="d-flex flex-column  align-items-stretch justify-content-center"> 
726                                <#if (organiser.organiserAddress.getData())?has_content && (organiser.organiserPlace.getData())?has_content> 
727                                    <div class="col-12 feux-btn-clear border-0 mb-0 text-left"> 
728                                        <svg width="26" height="34" viewBox="0 0 26 34" fill="none" 
729                                             xmlns="http://www.w3.org/2000/svg" 
730                                             class="event-card-right__org__svg mr-20px"> 
731                                            <path d="M14.2169 6.77393C13.7995 6.6348 13.3126 6.56525 12.8256 6.56525C10.1126 6.56525 7.95605 8.72177 7.95605 11.4348C7.95605 14.1479 10.1126 16.3044 12.8256 16.3044C15.5387 16.3044 17.6952 14.1479 17.6952 11.4348C17.6952 11.2261 17.6952 10.9479 17.6256 10.7392" 
732                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
733                                                  stroke-linecap="round" stroke-linejoin="round"/> 
734                                            <path d="M23.2612 11.4348C23.2612 5.66087 18.6003 1 12.8264 1C7.05247 1 2.3916 5.66087 2.3916 11.4348C2.3916 20.4783 12.8264 28.8261 12.8264 28.8261C12.8264 28.8261 23.2612 20.4783 23.2612 11.4348Z" 
735                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
736                                                  stroke-linecap="round" stroke-linejoin="round"/> 
737                                            <path d="M20.2696 27.4348C22.913 27.9913 24.6522 28.8956 24.6522 29.8695C24.6522 31.6087 19.3652 33 12.8261 33C6.28696 33 1 31.6087 1 29.8695C1 28.8956 2.66957 27.9913 5.38261 27.4348" 
738                                                  stroke="#003399" stroke-width="1.5" stroke-miterlimit="10" 
739                                                  stroke-linecap="round" stroke-linejoin="round"/> 
740                                        </svg> 
741                                        <address class="mb-0 text-c-black-font text-left"> 
742                                            ${organiser.organiserAddress.getData()}<br/>${organiser.organiserPlace.getData()} 
743                                        </address> 
744                                    </div> 
745                                </#if> 
746                                <#if (organiser.organiserTelephone.getData())?has_content> 
747                                    <div class="col-12 feux-btn-clear border-0 mt-15px"> 
748                                        <svg width="27" height="25" viewBox="0 0 27 25" fill="none" 
749                                             xmlns="http://www.w3.org/2000/svg" 
750                                             class="event-card-right__org__svg mr-20px"> 
751                                            <path d="M10.8271 18.2474C11.092 17.9488 11.5796 17.2785 11.5796 17.2785C11.6315 17.2 11.7619 17.1733 11.8558 17.1677L16.1208 18.4953C16.4082 18.5723 16.613 18.8428 16.5934 19.1456C16.6145 19.1821 16.578 19.2031 16.5991 19.2395C16.5893 19.3909 16.5795 19.5424 16.5333 19.7148C16.196 21.3187 14.5463 22.4169 12.9116 22.1945C6.33645 21.326 2.17654 15.4675 3.60444 9.10378C3.94178 7.49991 5.59146 6.4017 7.22614 6.62408C7.37755 6.63384 7.55001 6.68004 7.72245 6.72625L7.77993 6.74166C8.06734 6.81867 8.23567 7.1102 8.25258 7.39198L8.06332 11.7772C8.06896 11.8711 7.98068 11.9707 7.87135 12.0338C7.87135 12.0338 7.09477 12.2878 6.66723 12.3888" 
752                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
753                                                  stroke-linejoin="round"/> 
754                                            <path d="M17.2034 13.6425C17.5017 12.6442 17.413 11.4807 16.8239 10.4603C16.2348 9.43991 15.2715 8.78133 14.2578 8.54053" 
755                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
756                                                  stroke-linejoin="round"/> 
757                                            <path d="M22.4056 15.4974C23.3286 12.9723 23.1749 10.0971 21.7442 7.61896C20.3135 5.14087 17.9003 3.57011 15.252 3.10693" 
758                                                  stroke="#003399" stroke-miterlimit="10" stroke-linecap="round" 
759                                                  stroke-linejoin="round"/> 
760                                        </svg> 
761                                        <a class="text-c-black-font" href="tel:${organiser.organiserTelephone.getData()}">+${organiser.organiserTelephone.getData()}</a> 
762                                    </div> 
763                                </#if> 
764                                <#if (organiser.organiserContact.getData())?has_content> 
765                                    <div class="col-12 feux-btn-clear border-0 mt-15px" style="max-width: none"> 
766                                        <svg width="22" height="16" viewBox="0 0 22 16" fill="none" 
767                                             xmlns="http://www.w3.org/2000/svg" 
768                                             class="event-card-right__org__svg mr-20px"> 
769                                            <path d="M19.9556 15.3033H1.68283C1.10854 15.3033 0.638672 14.8334 0.638672 14.2591V1.72922C0.638672 1.15493 1.10854 0.685059 1.68283 0.685059H19.9556C20.5299 0.685059 20.9997 1.15493 20.9997 1.72922V14.2591C20.9997 14.8334 20.5299 15.3033 19.9556 15.3033Z" 
770                                                  stroke="#0A50B9" stroke-miterlimit="10" stroke-linecap="round" 
771                                                  stroke-linejoin="round"/> 
772                                            <path d="M3.24805 4.49639L10.8182 9.56055L18.0852 4.49561" stroke="#0A50B9" 
773                                                  stroke-miterlimit="10" stroke-linecap="round" 
774                                                  stroke-linejoin="round"/> 
775                                            <path d="M3.24805 12.1714H5.33636" stroke="#0A50B9" stroke-miterlimit="10" 
776                                                  stroke-linecap="round" stroke-linejoin="round"/> 
777                                        </svg> 
778                                        <a class="text-c-portal-ue-blue-font" href="mailto:${organiser.organiserContact.getData()}">${organiser.organiserContact.getData()}</a> 
779                                    </div> 
780                                </#if> 
781                            </div> 
782                        </div> 
783                    </div> 
784                </div> 
785            </div> 
786            <div class="event-card-wrapper__content__sign-up-wrapper d-lg-none"> 
787                <div class="event-card-wrapper__content__sign-up d-flex flex-column"> 
788                    <div class="event-card-wrapper__content__sign-up__date"> 
789                        <time datetime="P2D">${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if></time> 
790                    </div> 
791                    <div class="event-card-wrapper__content__sign-up__meta"> 
792                        <#if (type.getData())?has_content> 
793                            <span class="event-card-wrapper__content__sign-up__meta__type feux-label__blue"> 
794                                ${languageUtil.get(locale, "event-" + type.getData())} 
795                            </span> 
796                        </#if> 
797                        <#if (mode.getData())?has_content> 
798                            <span class="event-card-wrapper__content__sign-up__meta__isOnline"> 
799                                ${languageUtil.get(locale, "event-" + mode.getData())} 
800                            </span> 
801                        </#if> 
802                    </div> 
803                    <#if isRegisterActive> 
804                        <#if maxRegistrationAttempts.getData()?number <= 0 || registeredCount < maxRegistrationAttempts.getData()?number> 
805                            <div class="event-card-wrapper__content__sign-up__button"> 
806                                <button class="event-card-wrapper__content__sign-up__button__btn btn-navigate-to-form"> 
807                                    ${languageUtil.get(locale, "event-take-part")} 
808                                </button> 
809                            </div> 
810                        <#elseif (maxRegistrationAttempts.getData()?number > 0) > 
811                            <div class="feux-label-tag__gray__no-active"> 
812                                ${languageUtil.get(locale, "registration-ended")} 
813                            </div> 
814                        </#if> 
815                    </#if> 
816                </div> 
817            </div> 
818            <@printAttachments /> 
819        </div> 
820        <#if topics.getSiblings()?has_content> 
821            <#assign numOfTopics = (topics.getSiblings() 
822            ?map(cur_topic -> cur_topic.topicName.getData()) 
823            ?filter(cur_topicName -> cur_topicName?has_content) 
824            ?size)!0 /> 
825            <#if numOfTopics &gt; 0 > 
826                <div class="mt-30px feux-bg--c-ue-blue3-bg w-100 topic-container"> 
827                    <h2 class="text-center topic-container__title">${languageUtil.get(themeDisplay.getLocale(), "event-topics")}</h2> 
828                    <ul class="topic-row list-unstyled"> 
829                        <#list topics.getSiblings() as topic> 
830                            <li class="topic-row__topic-item text-center d-flex flex-column justify-content-center align-items-center"> 
831                                <#if (topic.topicImage.getData())?? && topic.topicImage.getData() != ""> 
832                                    <img alt="${topic.topicImage.getAttribute("alt")}" data-fileentryid="${topic.topicImage.getAttribute("fileEntryId")}" src="${topic.topicImage.getData()}" /> 
833                                </#if> 
834                                <#if (topic.topicName.getData())??> 
835                                    <h3 class="h5"> 
836                                        ${topic.topicName.getData()} 
837                                    </h3> 
838                                </#if> 
839                            </li> 
840                        </#list> 
841                    </ul> 
842                </div> 
843            </#if> 
844        </#if> 
845        <#if speakers.getSiblings()?has_content> 
846            <#assign numOfSpeakers = (speakers.getSiblings() 
847            ?map(cur_speaker -> cur_speaker.speakerName.getData()) 
848            ?filter(cur_speakerName -> cur_speakerName?has_content) 
849            ?size)!0 /> 
850            <#if numOfSpeakers &gt; 0> 
851                <div id="spotkanie-prelegenci"> 
852                    <section class="py-4 py-lg-5 overflow-hidden event-swiper swiper-simple"> 
853                        <header class="mb-4 mb-lg-5 container d-flex justify-content-between mb-20px"> 
854                            <h2 class="text-18px text-24px-lg text-c-black-font text-semibold-2 my-0 title-h3" tabindex="0" aria-label="${languageUtil.get(themeDisplay.getLocale(), "event-speakers")}">${languageUtil.get(themeDisplay.getLocale(), "event-speakers")}</h2> 
855                            <div class="swiper-navigation"> 
856                                <button class="swiper-button-prev swiper-wydarzenia-prelegenci-prev"> 
857                                    <span class="visually-hidden">${languageUtil.get(themeDisplay.getLocale(), "previous-slide")}</span> 
858                                </button> 
859                                <button class="swiper-button-next swiper-wydarzenia-prelegenci-next"> 
860                                    <span class="visually-hidden">${languageUtil.get(themeDisplay.getLocale(), "next-slide")}</span> 
861                                </button> 
862                            </div> 
863                        </header> 
864                        <div id="speakers-swiper-${uniqueId}" class="container event-swiper"> 
865                            <div class="swiper swiper-transparent-edge-slides wydarzenia-lista-swiper wydarzenia-swiper__wydarzenia-prelegenci"> 
866                                <div class="swiper-wrapper align-items-stretch"> 
867                                    <#list speakers.getSiblings() as speaker> 
868                                        <div class="swiper-slide prelegent-slide" id="slide-${speaker?index}"> 
869                                            <div class="card w-100 h-100 wydarzenia-swiper-card mb-0"> 
870                                                <#if (speaker.speakerImage.getData())?has_content> 
871                                                    <div class="card-img-top "> 
872                                                        <img class="w-100" alt="${speaker.speakerImage.getAttribute("alt")}" data-fileentryid="${speaker.speakerImage.getAttribute("fileEntryId")}" src="${speaker.speakerImage.getData()}" /> 
873                                                    </div> 
874                                                </#if> 
875                                            </div> 
876                                            <div class="card-body" tabindex="0"> 
877                                                <#if (speaker.speakerName.getData())??> 
878                                                    <div class="swiper-card_title" aria-labelledby="cardTitleeop1"> 
879                                                        <h3 id="cardTitleeop1">${speaker.speakerName.getData()}</h3> 
880                                                    </div> 
881                                                </#if> 
882                                                <#if (speakers.speakerOffice.getData())??> 
883                                                    <ul class="list-unstyled row mb-0 card-success-story__extra-info card-success-story__extra-info-  d-block d-lg-block d-md-block "> 
884                                                        <li class="col-12 text-lightfont-2"> 
885                                                            <p>${speaker.speakerOffice.getData()}</p> 
886                                                        </li> 
887                                                    </ul> 
888                                                </#if> 
889                                            </div> 
890                                        </div> 
891                                    </#list> 
892                                </div> 
893                            </div> 
894                        </div> 
895                    </section> 
896                    <#list speakers.getSiblings() as speaker> 
897                        <section class="single-prelegent-slide-section" id="bio-${speaker?index}"> 
898                            <div class="container single-prelegent-slide d-flex flex-column"> 
899                                <div class="single-prelegent__biogram mx-auto"> 
900                                    <div class="single-prelegent__biogram__top d-flex justify-content-between align-items-center"> 
901                                        <h4>${languageUtil.get(themeDisplay.getLocale(), "event-biography")}</h4> 
902                                        <button class="single-prelegent__biogram__close"> 
903                                            <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> 
904                                                <path d="M22.6668 9.33331L9.3335 22.6666" stroke="#003399" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> 
905                                                <path d="M9.3335 9.33331L22.6668 22.6666" stroke="#003399" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> 
906                                            </svg> 
907                                            <span class="visually-hidden">${languageUtil.get(themeDisplay.getLocale(), "event-biography-close")}</span> 
908                                        </button> 
909                                    </div> 
910                                    <div class="single-prelegent__biogram__description"> 
911                                        <p>${speaker.speakerBio.getData()}</p> 
912                                    </div> 
913                                    <#if speaker.customSocials.getSiblings()?has_content> 
914                                        <#list speaker.customSocials.getSiblings() as customSocial> 
915                                            <#if customSocial.customSocialLink.getData()?has_content> 
916                                                <div class="single-prelegent__biogram__link"> 
917                                                    <a href="${customSocial.customSocialLink.getData()}">${customSocial.customSocialName.getData()}</a> 
918                                                    <svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"> 
919                                                        <path d="M6.875 17.375H3.375C2.91087 17.375 2.46575 17.1906 2.13756 16.8624C1.80937 16.5342 1.625 16.0891 1.625 15.625V3.375C1.625 2.91087 1.80937 2.46575 2.13756 2.13756C2.46575 1.80937 2.91087 1.625 3.375 1.625H6.875" stroke="#003399" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/> 
920                                                        <path d="M13 13.875L17.375 9.5L13 5.125" stroke="#003399" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/> 
921                                                        <path d="M17.375 9.5H6.875" stroke="#003399" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/> 
922                                                    </svg> 
923                                                </div> 
924                                            </#if> 
925                                        </#list> 
926                                    </#if> 
927                                    <#if speaker.socialLinks.getSiblings()?has_content> 
928                                        <div class="single-prelegent__biogram__icons d-flex align-items-center"> 
929                                            <#list speaker.socialLinks.getSiblings() as socialLink> 
930                                                <#if socialLink.socialMediaOption.getData() == "linkedin"> 
931                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
932                                                        <svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"> 
933                                                            <path d="M2.96875 1.25C2.23525 1.25 1.64062 1.88426 1.64062 2.66667C1.64062 3.44907 2.23525 4.08333 2.96875 4.08333C3.70225 4.08333 4.29688 3.44907 4.29688 2.66667C4.29688 1.88426 3.70225 1.25 2.96875 1.25Z" fill="#BDBDBD"/> 
934                                                            <path d="M1.71875 5.25C1.6756 5.25 1.64062 5.28731 1.64062 5.33333V14C1.64062 14.046 1.6756 14.0833 1.71875 14.0833H4.21875C4.2619 14.0833 4.29688 14.046 4.29688 14V5.33333C4.29688 5.28731 4.2619 5.25 4.21875 5.25H1.71875Z" fill="#BDBDBD"/> 
935                                                            <path d="M5.78125 5.25C5.7381 5.25 5.70312 5.28731 5.70312 5.33333V14C5.70312 14.046 5.7381 14.0833 5.78125 14.0833H8.28125C8.3244 14.0833 8.35938 14.046 8.35938 14V9.33333C8.35938 9.00181 8.48284 8.68387 8.70261 8.44945C8.92238 8.21503 9.22045 8.08333 9.53125 8.08333C9.84205 8.08333 10.1401 8.21503 10.3599 8.44945C10.5797 8.68387 10.7031 9.00181 10.7031 9.33333V14C10.7031 14.046 10.7381 14.0833 10.7812 14.0833H13.2812C13.3244 14.0833 13.3594 14.046 13.3594 14V8.2535C13.3594 6.63567 12.0402 5.37 10.5311 5.51633C10.0657 5.56146 9.6056 5.68487 9.17592 5.8813L8.35938 6.25457V5.33333C8.35938 5.28731 8.3244 5.25 8.28125 5.25H5.78125Z" fill="#BDBDBD"/> 
936                                                        </svg> 
937                                                        <span class="visually-hidden">LinkedIn</span> 
938                                                    </a> 
939                                                <#elseif socialLink.socialMediaOption.getData() == "twitter"> 
940                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
941                                                        <svg fill="#000000" width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" style="enable-background:new 0 0 24 24;" xml:space="preserve"><path d="M14.095479,10.316482L22.286354,1h-1.940718l-7.115352,8.087682L7.551414,1H1l8.589488,12.231093L1,23h1.940717  l7.509372-8.542861L16.448587,23H23L14.095479,10.316482z M11.436522,13.338465l-0.871624-1.218704l-6.924311-9.68815h2.981339  l5.58978,7.82155l0.867949,1.218704l7.26506,10.166271h-2.981339L11.436522,13.338465z"/></svg> 
942                                                        <span class="visually-hidden">Twitter</span> 
943                                                    </a> 
944                                                <#elseif socialLink.socialMediaOption.getData() == "youtube"> 
945                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
946                                                        <svg fill="#000000" width="20" height="20" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M24.325 8.309s-2.655-.334-8.357-.334c-5.517 0-8.294.334-8.294.334A2.675 2.675 0 0 0 5 10.984v10.034a2.675 2.675 0 0 0 2.674 2.676s2.582.332 8.294.332c5.709 0 8.357-.332 8.357-.332A2.673 2.673 0 0 0 27 21.018V10.982a2.673 2.673 0 0 0-2.675-2.673zM13.061 19.975V12.03L20.195 16l-7.134 3.975z"/></svg> 
947                                                        <span class="visually-hidden">Youtube</span> 
948                                                    </a> 
949                                                <#elseif socialLink.socialMediaOption.getData() == "facebook"> 
950                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
951                                                        <svg fill="#000000" width="20" height="20" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M21.95 5.005l-3.306-.004c-3.206 0-5.277 2.124-5.277 5.415v2.495H10.05v4.515h3.317l-.004 9.575h4.641l.004-9.575h3.806l-.003-4.514h-3.803v-2.117c0-1.018.241-1.533 1.566-1.533l2.366-.001.01-4.256z"/></svg> 
952                                                        <span class="visually-hidden">Facebook</span> 
953                                                    </a> 
954                                                <#elseif socialLink.socialMediaOption.getData() == "instagram"> 
955                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
956                                                        <svg fill="#000000" width="20" height="20" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M20.445 5h-8.891A6.559 6.559 0 0 0 5 11.554v8.891A6.559 6.559 0 0 0 11.554 27h8.891a6.56 6.56 0 0 0 6.554-6.555v-8.891A6.557 6.557 0 0 0 20.445 5zm4.342 15.445a4.343 4.343 0 0 1-4.342 4.342h-8.891a4.341 4.341 0 0 1-4.341-4.342v-8.891a4.34 4.34 0 0 1 4.341-4.341h8.891a4.342 4.342 0 0 1 4.341 4.341l.001 8.891z"/><path d="M16 10.312c-3.138 0-5.688 2.551-5.688 5.688s2.551 5.688 5.688 5.688 5.688-2.551 5.688-5.688-2.55-5.688-5.688-5.688zm0 9.163a3.475 3.475 0 1 1-.001-6.95 3.475 3.475 0 0 1 .001 6.95zM21.7 8.991a1.363 1.363 0 1 1-1.364 1.364c0-.752.51-1.364 1.364-1.364z"/></svg> 
957                                                        <span class="visually-hidden">Instagram</span> 
958                                                    </a> 
959                                                <#elseif socialLink.socialMediaOption.getData() == "pinterest"> 
960                                                    <a href="${socialLink.socialLinkURL.getData()}"> 
961                                                        <svg fill="#000000" width="20" height="20" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="M16.292 5C10.536 5 7.48 8.866 7.48 13.077c0 1.955 1.039 4.392 2.707 5.168.253.118.387.064.443-.18.047-.185.273-1.089.373-1.511a.402.402 0 0 0-.095-.386c-.55-.667-.988-1.896-.988-3.041 0-2.942 2.228-5.787 6.021-5.787 3.28 0 5.571 2.23 5.571 5.426 0 3.61-1.82 6.108-4.191 6.108-1.309 0-2.291-1.081-1.978-2.413.378-1.584 1.106-3.298 1.106-4.438 0-1.026-.552-1.883-1.685-1.883-1.341 0-2.415 1.385-2.415 3.241 0 1.182.4 1.978.4 1.978s-1.323 5.593-1.563 6.634c-.413 1.765.051 4.625.094 4.876.021.134.172.18.252.066.129-.175 1.725-2.565 2.174-4.292l.828-3.171c.439.829 1.707 1.531 3.061 1.531 4.021 0 6.923-3.703 6.923-8.299C24.52 8.301 20.92 5 16.292 5z"/></svg> 
962                                                        <span class="visually-hidden">Pinterest</span> 
963                                                    </a> 
964                                                </#if> 
965                                            </#list> 
966                                        </div> 
967                                    </#if> 
968                                </div> 
969                            </div> 
970                        </section> 
971                    </#list> 
972                    <script> 
973                        setupSwiperPrelegenci("speakers-swiper-${uniqueId}"); 
974                        $('#spotkanie-prelegenci .swiper-wrapper') 
975                            .on('click', '.swiper-slide', function (event) { 
976                                openCard(event.currentTarget); 
977                            }) 
978                            .on('keypress', '.swiper-slide', function (event) { 
979                                openCard(event.currentTarget); } 
980                            ); 
981 
982                        $('.single-prelegent__biogram__close') 
983                            .on('click', function (event) { 
984                                closeCard(event.currentTarget); 
985                            }) 
986                            .on('keypress', function (event) { 
987                                closeCard(event.currentTarget); 
988                            }); 
989 
990                        function openCard(currentSlider) { 
991                            $("#spotkanie-prelegenci .swiper-wrapper .active").removeClass("active"); 
992                            const index = currentSlider.id.replace("slide-", ""); 
993                            const bioToDisplay = $('#bio-' + index); 
994                            if (bioToDisplay.css('display') === 'none' || bioToDisplay.css('display') === '') { 
995                                $("#spotkanie-prelegenci .single-prelegent-slide-section:visible").css("display", "none"); 
996                                bioToDisplay.css('display', 'block'); 
997                                $(currentSlider).addClass('active'); 
998                            } else { 
999                                $(currentSlider).removeClass('active'); 
1000                                bioToDisplay.css('display', 'none'); 
1001
1002
1003 
1004                        function closeCard(target) { 
1005                            const bio = target.closest(".single-prelegent-slide-section"); 
1006                            $(bio).css("display", "none"); 
1007                            const index = bio.id.replace("bio-", ""); 
1008                            $("#spotkanie-prelegenci .swiper-wrapper #slide-" + index).removeClass("active"); 
1009
1010 
1011                    </script> 
1012                </div> 
1013            </#if> 
1014        </#if> 
1015        <#if terms.getSiblings()?has_content> 
1016            <#assign numOfTerms = (terms.getSiblings() 
1017            ?map(cur_terms -> cur_terms.termDay.getData()) 
1018            ?filter(cur_termDay -> cur_termDay?has_content) 
1019            ?size)!0 /> 
1020            <#if numOfTerms &gt; 0> 
1021                <div class="harmonogram feux-bg--c-ue-blue3-bg w-100" id="collapseHarmPar"> 
1022                    <h2 class="text-center harmonogram__title" id="spotkanie-program">${languageUtil.get(themeDisplay.getLocale(), "event-conference-schedule")}</h2> 
1023                    <div class="harmonogram__tabs d-flex justify-content-center align-items-center"> 
1024                        <#list terms.getSiblings() as term> 
1025                            <#if term.termDay.getData()?has_content> 
1026                                <button class="harmonogram__tabs__tab <#if term?index != 0>collapsed</#if>" data-bs-target="#accordionHarmonogram-${term?index}" data-bs-toggle="collapse" aria-expanded="false" aria-controls="accordionHarmonogram-${term?index}"> 
1027                                    ${languageUtil.get(themeDisplay.getLocale(), "day")} ${term?index + 1} (${term.termDay.getData()?date}) 
1028                                </button> 
1029                            </#if> 
1030                        </#list> 
1031                    </div> 
1032                    <div class="harmonogram-card mx-auto pb-20px"> 
1033                        <#list terms.getSiblings() as term> 
1034                            <div class="collapse <#if term?index == 0>show<#else>collapsed</#if>" id="accordionHarmonogram-${term?index}" data-bs-parent="#collapseHarmPar"> 
1035                                <#if term.termLocations.getSiblings()?has_content> 
1036                                    <#assign numOfTermLocations = (term.termLocations.getSiblings() 
1037                                    ?map(cur_termLocations -> cur_termLocations.locationName.getData()) 
1038                                    ?filter(cur_locationName -> cur_locationName?has_content) 
1039                                    ?size)!0 /> 
1040                                    <#if numOfTermLocations &gt; 0> 
1041                                        <div class="accordion"> 
1042                                            <#list term.termLocations.getSiblings() as termLocation> 
1043                                                <div> 
1044                                                    <div class="accordion-header" id="heading-${term?index}-${termLocation?index}"> 
1045                                                        <button class="accordion-button <#if termLocation?index != 0>collapsed</#if> harmonogram-card__room mx-auto d-flex align-items-center justify-content-between" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-${term?index}-${termLocation?index}" aria-expanded="true" aria-controls="collapse-${term?index}-${termLocation?index}"> 
1046                                                            <h3>${termLocation.locationName.getData()}</h3> 
1047                                                        </button> 
1048                                                    </div> 
1049                                                    <#if termLocation.details.getSiblings()?has_content> 
1050                                                        <div id="collapse-${term?index}-${termLocation?index}" class="accordion-collapse collapse <#if termLocation?index == 0>show</#if>" aria-labelledby="heading-${term?index}-${termLocation?index}"> 
1051                                                            <div> 
1052                                                                <ul class="harmonogram-card__row mx-auto list-unstyled"> 
1053                                                                    <#list termLocation.details.getSiblings() as detail> 
1054                                                                        <li class="harmonogram-card__row-item text-left"> 
1055                                                                            <p class="time pt-1">${detail.detailTime.getData()}</p> 
1056                                                                            <p class="desc">${detail.detailDescription.getData()}</p> 
1057                                                                        </li> 
1058                                                                    </#list> 
1059                                                                </ul> 
1060                                                            </div> 
1061                                                        </div> 
1062                                                    </#if> 
1063                                                </div> 
1064                                            </#list> 
1065                                        </div> 
1066                                    </#if> 
1067                                </#if> 
1068                            </div> 
1069                        </#list> 
1070                    </div> 
1071                </div> 
1072            </#if> 
1073        </#if> 
1074        <#if address?has_content && address.display_name?has_content && address.lat?has_content && address.lng?has_content> 
1075            <div class="event-big-card-wrapper__content_event-map"> 
1076                <div class="address-map-card d-grid d-lg-flex flex-lg-row align-items-lg-end justify-content-lg-center"> 
1077                    <div class="address-map-card__map"> 
1078                        <div id="important-map-${uniqueId}" class="d-flex justify-content-end"></div> 
1079                    </div> 
1080                    <div class="address-map-card__description"> 
1081                        <h4 class="subtitle">${languageUtil.get(themeDisplay.getLocale(), "where")}?</h4> 
1082                        <address>${address.display_name}</address> 
1083                        <h4 class="subtitle pt-25px">${languageUtil.get(themeDisplay.getLocale(), "when")}?</h4> 
1084                        <h5 class="address-map-card__description__date">${dateStart?string["d.MM.yyyy"]}<#if optionalDateEnd??> - ${optionalDateEnd?string["d.MM.yyyy"]}</#if></h5> 
1085                        <p class="address-map-card__description__info">${dateAdditionalInfo.getData()}</p> 
1086                    </div> 
1087                </div> 
1088                <script> 
1089                    setupOpenStreetMap( 
1090                        'important-map-${uniqueId}', 
1091
1092
1093                                "name": "", 
1094                                "latitude": "${address.lat}", 
1095                                "longitude": "${address.lng}" 
1096
1097                        ], 
1098                        true, 
1099                        '${themeDisplay.getPathThemeImages()}'); 
1100                </script> 
1101            </div> 
1102        </#if> 
1103        <#if patronage.getSiblings()?has_content> 
1104            <#assign numOfPatronage= (patronage.getSiblings() 
1105            ?filter(cur_patron-> cur_patron.getData()?has_content) 
1106            ?size)!0 /> 
1107            <#if numOfPatronage &gt; 0> 
1108                <div class="patronage feux-border-top-grey" id="spotkanie-patronaty"> 
1109                    <header class="mb-4 mb-lg-5 container d-flex justify-content-between mb-20px"> 
1110                        <h2 class="text-18px text-24px-lg text-c-black-font text-semibold-2 my-0 title-h3" tabindex="0" aria-label="${languageUtil.get(themeDisplay.getLocale(), "event-patronage")}">${languageUtil.get(themeDisplay.getLocale(), "event-patronage")}</h2> 
1111                    </header> 
1112                    <ul class="patronage__logo-row w-100 list-unstyled"> 
1113                        <#list patronage.getSiblings() as patron> 
1114                            <#if patron.getAttribute("fileEntryId")?has_content> 
1115                                <li class="logo-item"> 
1116                                    <img tabindex="0" alt="${patron.getAttribute("alt")}" data-fileentryid="${patron.getAttribute("fileEntryId")}" src="${patron.getData()}" /> 
1117                                </li> 
1118                            </#if> 
1119                        </#list> 
1120                    </ul> 
1121                </div> 
1122            </#if> 
1123        </#if> 
1124    </div> 
1125</#macro> 
1126 
1127<#macro printShare> 
1128    <div class="event-card-right__share"> 
1129        <ul class="list-unstyled d-flex flex-wrap flex-xl-nowrap"> 
1130            <li class="order-1 order-md-0 mr-30px"> 
1131                <!-- id: shareBtnOpen do wywołania okna z udostępnianiem --> 
1132                <div class="icon-text-link-wrapper"> 
1133                    <div class="icon-text-link-wrapper__icon"> 
1134                        <svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"> 
1135                            <path d="M4.17996 12C5.64904 12 6.83996 10.8247 6.83996 9.375C6.83996 7.92525 5.64904 6.75 4.17996 6.75C2.71088 6.75 1.51996 7.92525 1.51996 9.375C1.51996 10.8247 2.71088 12 4.17996 12Z" 
1136                                  stroke="#003399" stroke-miterlimit="10" 
1137                                  stroke-linecap="round" stroke-linejoin="round"/> 
1138                            <path d="M14.0599 6C15.529 6 16.7199 4.82475 16.7199 3.375C16.7199 1.92525 15.529 0.75 14.0599 0.75C12.5908 0.75 11.3999 1.92525 11.3999 3.375C11.3999 4.82475 12.5908 6 14.0599 6Z" 
1139                                  stroke="#003399" stroke-miterlimit="10" 
1140                                  stroke-linecap="round" stroke-linejoin="round"/> 
1141                            <path d="M11.3999 5.25L6.8399 7.5" stroke="#003399" 
1142                                  stroke-miterlimit="10" stroke-linecap="round" 
1143                                  stroke-linejoin="round"/> 
1144                            <path d="M6.8399 10.5L11.3999 13.5" stroke="#003399" 
1145                                  stroke-miterlimit="10" stroke-linecap="round" 
1146                                  stroke-linejoin="round"/> 
1147                            <path d="M14.0599 17.25C15.529 17.25 16.7199 16.0747 16.7199 14.625C16.7199 13.1753 15.529 12 14.0599 12C12.5908 12 11.3999 13.1753 11.3999 14.625C11.3999 16.0747 12.5908 17.25 14.0599 17.25Z" 
1148                                  stroke="#003399" stroke-miterlimit="10" 
1149                                  stroke-linecap="round" stroke-linejoin="round"/> 
1150                        </svg> 
1151                    </div> 
1152                    <div class="icon-text-link-wrapper__text"> 
1153                        <span class="mb-3px">Myślisz, że komuś się przyda?</span> 
1154                        <button type="button" onclick="openSocialMediaShare()" class="icon-text-link-wrapper__text  unstyled-btn shareBtnOpen p-0 text-left"> 
1155                            Udostępnij raport 
1156                        </button> 
1157                        <div class="d-inline"> 
1158                            <svg width="8" height="14" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="mt-12px mr-10px"> 
1159                                <path d="M5.46683 0.916656C4.64908 0.916656 3.86482 1.24151 3.28658 1.81974C2.70835 2.39798 2.3835 3.18224 2.3835 3.99999V5.71666H0.733496C0.650653 5.71666 0.583496 5.78381 0.583496 5.86666V8.13332C0.583496 8.21617 0.650653 8.28332 0.733496 8.28332H2.3835V12.9333C2.3835 13.0162 2.45065 13.0833 2.5335 13.0833H4.80016C4.883 13.0833 4.95016 13.0162 4.95016 12.9333V8.28332H6.61478C6.68361 8.28332 6.74361 8.23648 6.7603 8.1697L7.32696 5.90304C7.35063 5.80836 7.27903 5.71666 7.18144 5.71666H4.95016V3.99999C4.95016 3.86296 5.0046 3.73154 5.10149 3.63465C5.19838 3.53776 5.3298 3.48332 5.46683 3.48332H7.20016C7.283 3.48332 7.35016 3.41617 7.35016 3.33332V1.06666C7.35016 0.983814 7.283 0.916656 7.20016 0.916656H5.46683Z" 
1160                                      fill="#1B1B1B"/> 
1161                            </svg> 
1162                            <svg width="13" height="14" viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="mt-12px mr-10px"> 
1163                                <path d="M1.96875 0.25C1.23525 0.25 0.640625 0.884263 0.640625 1.66667C0.640625 2.44907 1.23525 3.08333 1.96875 3.08333C2.70225 3.08333 3.29688 2.44907 3.29688 1.66667C3.29688 0.884263 2.70225 0.25 1.96875 0.25Z" 
1164                                      fill="#1B1B1B"/> 
1165                                <path d="M0.71875 4.25C0.675603 4.25 0.640625 4.28731 0.640625 4.33333V13C0.640625 13.046 0.675603 13.0833 0.71875 13.0833H3.21875C3.2619 13.0833 3.29688 13.046 3.29688 13V4.33333C3.29688 4.28731 3.2619 4.25 3.21875 4.25H0.71875Z" 
1166                                      fill="#1B1B1B"/> 
1167                                <path d="M4.78125 4.25C4.7381 4.25 4.70312 4.28731 4.70312 4.33333V13C4.70312 13.046 4.7381 13.0833 4.78125 13.0833H7.28125C7.3244 13.0833 7.35938 13.046 7.35938 13V8.33333C7.35938 8.00181 7.48284 7.68387 7.70261 7.44945C7.92238 7.21503 8.22045 7.08333 8.53125 7.08333C8.84205 7.08333 9.14012 7.21503 9.35989 7.44945C9.57966 7.68387 9.70312 8.00181 9.70312 8.33333V13C9.70312 13.046 9.7381 13.0833 9.78125 13.0833H12.2812C12.3244 13.0833 12.3594 13.046 12.3594 13V7.2535C12.3594 5.63567 11.0402 4.37 9.53115 4.51633C9.06575 4.56146 8.6056 4.68487 8.17592 4.8813L7.35938 5.25457V4.33333C7.35938 4.28731 7.3244 4.25 7.28125 4.25H4.78125Z" 
1168                                      fill="#1B1B1B"/> 
1169                            </svg> 
1170                            <svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg" class="mt-12px mr-10px"> 
1171                                <path d="M13.5398 2.15148C13.5785 2.09763 13.5214 2.02811 13.4596 2.05206C13.0205 2.22228 12.5615 2.33713 12.0934 2.39372C12.6146 2.08231 13.0169 1.60826 13.2399 1.04701C13.2626 0.989839 13.2002 0.938781 13.1464 0.968524C12.6619 1.23608 12.1394 1.42875 11.5966 1.53971C11.5739 1.54435 11.5505 1.53661 11.5345 1.51978C11.1272 1.09 10.5911 0.803844 10.0066 0.704958C9.40979 0.603994 8.79638 0.703962 8.26254 0.989183C7.72871 1.2744 7.30464 1.72874 7.05685 2.28095C6.82124 2.80599 6.75766 3.39126 6.87387 3.95335C6.88289 3.99696 6.84875 4.03813 6.8043 4.03537C5.74826 3.96978 4.71646 3.6889 3.77245 3.20963C2.83085 2.73158 1.99703 2.06654 1.32178 1.25552C1.29181 1.21953 1.23501 1.22419 1.21318 1.26562C1.00306 1.66433 0.893053 2.10873 0.893352 2.56039C0.892499 3.00998 1.00283 3.4528 1.21452 3.84943C1.42621 4.24606 1.7327 4.5842 2.10669 4.83372C1.71007 4.82293 1.32118 4.72488 0.967517 4.54711C0.921939 4.52419 0.867268 4.55682 0.869638 4.60777C0.897217 5.2006 1.11485 5.79575 1.49156 6.25237C1.89244 6.73828 2.44886 7.07082 3.06668 7.19372C2.82886 7.2661 2.58194 7.30426 2.33335 7.30706C2.19806 7.30548 2.06303 7.29549 1.92904 7.27717C1.87936 7.27038 1.8388 7.31757 1.85619 7.3646C2.04047 7.86293 2.36602 8.29776 2.79407 8.61516C3.2517 8.9545 3.80374 9.14276 4.37335 9.15372C3.41149 9.91057 2.22394 10.3236 1.00002 10.3271C0.874256 10.3275 0.74855 10.3234 0.62314 10.3148C0.552468 10.31 0.519964 10.4042 0.580881 10.4403C1.77339 11.148 3.13641 11.5221 4.52669 11.5204C5.55315 11.531 6.57144 11.3371 7.52209 10.9498C8.47275 10.5625 9.3367 9.98965 10.0635 9.26472C10.7903 8.5398 11.3653 7.67732 11.7551 6.72766C12.1448 5.778 12.3414 4.76021 12.3334 3.73372V3.41384C12.3334 3.39279 12.3433 3.373 12.3601 3.36031C12.8123 3.01889 13.21 2.61126 13.5398 2.15148Z" 
1172                                      fill="#1B1B1B"/> 
1173                            </svg> 
1174                        </div> 
1175                    </div> 
1176                    <span class="visually-hidden"> </span> 
1177                </div> 
1178            </li> 
1179            <li class="order-0 order-md-1 mb-5 mb-md-0"> 
1180                <div class="icon-text-link-wrapper"> 
1181                    <div class="icon-text-link-wrapper__icon"> 
1182                        <svg width="21" height="17" viewBox="0 0 21 17" fill="none" xmlns="http://www.w3.org/2000/svg"> 
1183                            <path d="M4.30435 6.22461L1 7.33294L7.19565 9.3121" 
1184                                  stroke="#003399" stroke-miterlimit="10" 
1185                                  stroke-linecap="round" stroke-linejoin="round"/> 
1186                            <path d="M8.84785 9.82708L9.67393 10.1042L15.4565 16.0417L20 1L5.95654 5.67083" 
1187                                  stroke="#003399" stroke-miterlimit="10" 
1188                                  stroke-linecap="round" stroke-linejoin="round"/> 
1189                            <path d="M7.19556 9.3125V14.1021L10.0869 12.4792" 
1190                                  stroke="#003399" stroke-miterlimit="10" 
1191                                  stroke-linecap="round" stroke-linejoin="round"/> 
1192                        </svg> 
1193                    </div> 
1194                    <div class="icon-text-link-wrapper__text"> 
1195												<a href="mailto:?subject=${htmlUtil.escape(documentTitle)}&body=Link: ${htmlUtil.escapeURL(friendlyURL)}"> 
1196														<span class="mb-3px">Chcesz poinformować innych?</span> 
1197														<span type="button" class="icon-text-link-wrapper__text  unstyled-btn p-0 text-left"> 
1198																Wyślij raport 
1199														</span> 
1200														<div class="d-inline"> 
1201																<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="mt-12px mr-10px"> 
1202																		<path d="M3.58924 0.271742C5.56291 0.0900834 7.54773 0.0900833 9.52139 0.271742L10.4723 0.359263C11.1053 0.417527 11.6474 0.817306 11.9284 1.38916C11.9643 1.46231 11.9374 1.55089 11.8711 1.59429L7.9259 4.18024C7.07976 4.73486 6.01285 4.74649 5.1561 4.21045L1.1845 1.72555C1.12034 1.6854 1.09089 1.60276 1.1198 1.53003C1.37679 0.883652 1.95456 0.422201 2.63836 0.359263L3.58924 0.271742Z" 
1203																					fill="#1B1B1B"/> 
1204																		<path d="M1.11657 2.84459C1.01837 2.78315 0.893074 2.84926 0.881627 2.96943C0.721868 4.64652 0.760534 6.33948 0.997626 8.00889C1.12262 8.88896 1.80098 9.56366 2.63836 9.64073L3.58924 9.72825C5.5629 9.90991 7.54773 9.90991 9.5214 9.72825L10.4723 9.64073C11.3097 9.56366 11.988 8.88896 12.113 8.00889C12.357 6.29083 12.3909 4.54783 12.2145 2.82285C12.2022 2.70184 12.0747 2.63694 11.977 2.70101L8.42302 5.03051C7.27824 5.78087 5.83476 5.79661 4.67563 5.07138L1.11657 2.84459Z" 
1205																					fill="#1B1B1B"/> 
1206																</svg> 
1207																<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" class="mt-12px mr-10px"> 
1208																		<path fill-rule="evenodd" clip-rule="evenodd" 
1209																					d="M1.44287 8.83331C1.71901 8.83331 1.94287 9.05717 1.94287 9.33331V10.6666C1.94287 10.7587 2.01749 10.8333 2.10954 10.8333H10.1095C10.2016 10.8333 10.2762 10.7587 10.2762 10.6666V9.33331C10.2762 9.05717 10.5001 8.83331 10.7762 8.83331C11.0523 8.83331 11.2762 9.05717 11.2762 9.33331V10.6666C11.2762 11.311 10.7539 11.8333 10.1095 11.8333H2.10954C1.46521 11.8333 0.942871 11.311 0.942871 10.6666V9.33331C0.942871 9.05717 1.16673 8.83331 1.44287 8.83331Z" 
1210																					fill="#1B1B1B"/> 
1211																		<path fill-rule="evenodd" clip-rule="evenodd" 
1212																					d="M5.26811 8.75149C4.92518 8.75149 4.63912 8.48941 4.60918 8.14779C4.50675 6.97931 4.48868 5.80509 4.55506 4.63426C4.39041 4.62516 4.22582 4.61461 4.06131 4.60262L3.06827 4.53024C2.6854 4.50233 2.47138 4.07542 2.67808 3.75193C3.38611 2.64388 4.29843 1.68059 5.3664 0.91343L5.76424 0.627642C5.97058 0.479425 6.24849 0.479426 6.45482 0.627642L6.85266 0.913429C7.92064 1.68059 8.83295 2.64388 9.54098 3.75193C9.74768 4.07542 9.53366 4.50233 9.15079 4.53024L8.15775 4.60262C7.99324 4.61461 7.82865 4.62516 7.664 4.63426C7.73038 5.80509 7.71231 6.97931 7.60988 8.14779C7.57994 8.48941 7.29388 8.75149 6.95096 8.75149H5.26811Z" 
1213																					fill="#1B1B1B"/> 
1214																</svg> 
1215														</div> 
1216												</a> 
1217                    </div> 
1218                    <span class="visually-hidden"> </span> 
1219                </div> 
1220            </li> 
1221        </ul> 
1222        <div class="share-row share-row-icon line-header-top" aria-hidden="true"> 
1223            <div class="share-wrapper d-flex w-100 justify-content-center"> 
1224                <div class="icons"> 
1225										<a href="http://www.facebook.com/sharer.php?u=${friendlyURL}" target="_blank"> 
1226												<svg width="63" height="77" viewBox="0 0 63 77" fill="none" xmlns="http://www.w3.org/2000/svg" class="align-self-center"> 
1227														<path d="M1.37664 73.1445V63.7887H2.41914V73.1445H1.37664ZM1.89789 68.9745V67.9454H6.62926V68.9745H1.89789ZM1.89789 64.8045V63.7887H7.25743V64.8045H1.89789ZM11.4291 73.2782C10.8232 73.2782 10.2752 73.1223 9.78517 72.8104C9.29511 72.4896 8.90751 72.0575 8.62238 71.5139C8.33725 70.9615 8.19469 70.3378 8.19469 69.6428C8.19469 68.9389 8.34171 68.3152 8.63574 67.7716C8.92978 67.2281 9.32184 66.8004 9.8119 66.4885C10.3109 66.1767 10.8678 66.0208 11.4826 66.0208C11.8479 66.0208 12.1865 66.0742 12.4984 66.1811C12.8102 66.2881 13.0864 66.4395 13.327 66.6356C13.5765 66.8227 13.7814 67.0454 13.9418 67.3038C14.1111 67.5533 14.227 67.8251 14.2893 68.1191L13.9953 67.9721L14.0354 66.1678H15.0378V73.1445H14.022V71.4338L14.2893 71.26C14.227 71.5273 14.1067 71.7857 13.9285 72.0352C13.7503 72.2758 13.532 72.4896 13.2736 72.6767C13.0241 72.8639 12.7389 73.0109 12.4182 73.1178C12.1063 73.2247 11.7766 73.2782 11.4291 73.2782ZM11.6563 72.3159C12.1197 72.3159 12.534 72.2045 12.8993 71.9817C13.2646 71.7501 13.5498 71.4338 13.7547 71.0328C13.9686 70.6229 14.0755 70.1596 14.0755 69.6428C14.0755 69.126 13.9686 68.6671 13.7547 68.2661C13.5498 67.8652 13.2646 67.5489 12.8993 67.3172C12.534 67.0855 12.1197 66.9697 11.6563 66.9697C11.1841 66.9697 10.7653 67.0855 10.4 67.3172C10.0436 67.5489 9.75844 67.8652 9.54459 68.2661C9.33966 68.6671 9.23719 69.126 9.23719 69.6428C9.23719 70.1507 9.33966 70.6096 9.54459 71.0194C9.74953 71.4204 10.0347 71.7367 10.4 71.9684C10.7653 72.2 11.1841 72.3159 11.6563 72.3159ZM19.9311 73.2782C19.2717 73.2782 18.6837 73.1223 18.1669 72.8104C17.6501 72.4896 17.2402 72.0575 16.9372 71.5139C16.6432 70.9615 16.4962 70.3378 16.4962 69.6428C16.4962 68.9478 16.6432 68.3285 16.9372 67.785C17.2402 67.2326 17.6501 66.8004 18.1669 66.4885C18.6837 66.1767 19.2762 66.0208 19.9445 66.0208C20.5415 66.0208 21.085 66.141 21.5751 66.3816C22.0651 66.6133 22.4572 66.9385 22.7512 67.3573L22.1631 68.079C21.9938 67.8563 21.7889 67.6602 21.5483 67.491C21.3167 67.3217 21.0627 67.1925 20.7865 67.1034C20.5192 67.0053 20.2519 66.9563 19.9846 66.9563C19.5123 66.9563 19.0891 67.0766 18.7149 67.3172C18.3406 67.5489 18.0421 67.8652 17.8194 68.2661C17.6055 68.6671 17.4986 69.126 17.4986 69.6428C17.4986 70.1596 17.6055 70.6229 17.8194 71.0328C18.0421 71.4338 18.3406 71.7501 18.7149 71.9817C19.0891 72.2134 19.5079 72.3292 19.9712 72.3292C20.2385 72.3292 20.5014 72.2891 20.7598 72.209C21.0182 72.1198 21.2632 71.9951 21.4949 71.8347C21.7265 71.6743 21.9404 71.4739 22.1364 71.2333L22.7245 71.955C22.4215 72.356 22.0161 72.6767 21.5082 72.9173C21.0003 73.1579 20.4746 73.2782 19.9311 73.2782ZM27.0999 73.2782C26.4049 73.2782 25.7856 73.1267 25.2421 72.8238C24.7075 72.5208 24.2887 72.0976 23.9857 71.554C23.6828 71.0105 23.5313 70.3868 23.5313 69.6829C23.5313 69.1394 23.616 68.6493 23.7853 68.2127C23.9546 67.7672 24.1907 67.3796 24.4936 67.0499C24.8055 66.7202 25.1753 66.4663 25.603 66.2881C26.0307 66.1009 26.494 66.0074 26.993 66.0074C27.4652 66.0074 27.8929 66.092 28.276 66.2613C28.6681 66.4306 29.0022 66.6667 29.2785 66.9697C29.5636 67.2637 29.7774 67.6157 29.92 68.0256C30.0626 68.4354 30.1249 68.8854 30.1071 69.3755L30.0937 69.8433H24.2798L24.1328 69.0012H29.3319L29.0913 69.2285V68.9077C29.0735 68.5869 28.98 68.2795 28.8107 67.9855C28.6414 67.6825 28.4008 67.4375 28.0889 67.2504C27.786 67.0633 27.4207 66.9697 26.993 66.9697C26.494 66.9697 26.0618 67.0722 25.6965 67.2771C25.3312 67.4731 25.0505 67.7672 24.8545 68.1592C24.6585 68.5513 24.5605 69.0369 24.5605 69.6161C24.5605 70.1685 24.6674 70.6496 24.8812 71.0595C25.0951 71.4605 25.398 71.7723 25.7901 71.9951C26.191 72.2179 26.6722 72.3292 27.2335 72.3292C27.5632 72.3292 27.8885 72.2758 28.2092 72.1689C28.5389 72.053 28.8998 71.8303 29.2918 71.5006L29.8131 72.2223C29.6081 72.4273 29.3631 72.6099 29.078 72.7703C28.7928 72.9218 28.481 73.0465 28.1424 73.1445C27.8038 73.2336 27.4563 73.2782 27.0999 73.2782ZM35.0727 73.2782C34.743 73.2782 34.4222 73.2292 34.1104 73.1312C33.7985 73.0242 33.5134 72.8817 33.255 72.7035C33.0055 72.5253 32.7917 72.3203 32.6134 72.0887C32.4442 71.857 32.3283 71.6164 32.2659 71.3669L32.56 71.3803L32.5199 73.1312H31.5308V63.2541H32.5333V67.8385L32.3328 67.8919C32.3951 67.6424 32.5065 67.4063 32.6669 67.1835C32.8362 66.9519 33.0456 66.7514 33.2951 66.5821C33.5446 66.4039 33.8163 66.2658 34.1104 66.1678C34.4133 66.0698 34.7252 66.0208 35.046 66.0208C35.6697 66.0208 36.2266 66.1767 36.7166 66.4885C37.2156 66.8004 37.6121 67.2281 37.9062 67.7716C38.2002 68.3152 38.3472 68.9389 38.3472 69.6428C38.3472 70.3467 38.2047 70.9749 37.9195 71.5273C37.6344 72.0708 37.2423 72.4985 36.7434 72.8104C36.2533 73.1223 35.6964 73.2782 35.0727 73.2782ZM34.9123 72.3292C35.3845 72.3292 35.8033 72.2134 36.1687 71.9817C36.534 71.7412 36.8191 71.4204 37.024 71.0194C37.2379 70.6096 37.3448 70.1507 37.3448 69.6428C37.3448 69.126 37.2379 68.6671 37.024 68.2661C36.8191 67.8652 36.534 67.5489 36.1687 67.3172C35.8033 67.0855 35.3845 66.9697 34.9123 66.9697C34.4401 66.9697 34.0213 67.0855 33.656 67.3172C33.2906 67.5489 33.001 67.8652 32.7872 68.2661C32.5823 68.6671 32.4798 69.126 32.4798 69.6428C32.4798 70.1596 32.5823 70.6229 32.7872 71.0328C33.001 71.4338 33.2906 71.7501 33.656 71.9817C34.0213 72.2134 34.4401 72.3292 34.9123 72.3292ZM42.8933 73.2782C42.1983 73.2782 41.5791 73.1223 41.0356 72.8104C40.5009 72.4985 40.0777 72.0664 39.7658 71.5139C39.4629 70.9615 39.3114 70.3333 39.3114 69.6294C39.3114 68.9344 39.4629 68.3152 39.7658 67.7716C40.0777 67.2281 40.5009 66.8004 41.0356 66.4885C41.5791 66.1767 42.1983 66.0208 42.8933 66.0208C43.5794 66.0208 44.1898 66.1767 44.7244 66.4885C45.2679 66.8004 45.6912 67.2281 45.9941 67.7716C46.306 68.3152 46.4619 68.9344 46.4619 69.6294C46.4619 70.3333 46.306 70.9615 45.9941 71.5139C45.6912 72.0664 45.2679 72.4985 44.7244 72.8104C44.1898 73.1223 43.5794 73.2782 42.8933 73.2782ZM42.8933 72.3292C43.3834 72.3292 43.82 72.2134 44.2032 71.9817C44.5863 71.7412 44.8848 71.4204 45.0986 71.0194C45.3125 70.6096 45.4194 70.1462 45.4194 69.6294C45.4194 69.1126 45.3125 68.6537 45.0986 68.2528C44.8848 67.8518 44.5863 67.54 44.2032 67.3172C43.82 67.0855 43.3834 66.9697 42.8933 66.9697C42.4033 66.9697 41.9622 67.0855 41.5702 67.3172C41.187 67.54 40.8841 67.8563 40.6613 68.2661C40.4475 68.6671 40.345 69.1215 40.3539 69.6294C40.345 70.1462 40.4475 70.6096 40.6613 71.0194C40.8841 71.4204 41.187 71.7412 41.5702 71.9817C41.9622 72.2134 42.4033 72.3292 42.8933 72.3292ZM51.0118 73.2782C50.3168 73.2782 49.6975 73.1223 49.154 72.8104C48.6194 72.4985 48.1962 72.0664 47.8843 71.5139C47.5813 70.9615 47.4299 70.3333 47.4299 69.6294C47.4299 68.9344 47.5813 68.3152 47.8843 67.7716C48.1962 67.2281 48.6194 66.8004 49.154 66.4885C49.6975 66.1767 50.3168 66.0208 51.0118 66.0208C51.6979 66.0208 52.3083 66.1767 52.8429 66.4885C53.3864 66.8004 53.8096 67.2281 54.1126 67.7716C54.4245 68.3152 54.5804 68.9344 54.5804 69.6294C54.5804 70.3333 54.4245 70.9615 54.1126 71.5139C53.8096 72.0664 53.3864 72.4985 52.8429 72.8104C52.3083 73.1223 51.6979 73.2782 51.0118 73.2782ZM51.0118 72.3292C51.5019 72.3292 51.9385 72.2134 52.3216 71.9817C52.7048 71.7412 53.0033 71.4204 53.2171 71.0194C53.431 70.6096 53.5379 70.1462 53.5379 69.6294C53.5379 69.1126 53.431 68.6537 53.2171 68.2528C53.0033 67.8518 52.7048 67.54 52.3216 67.3172C51.9385 67.0855 51.5019 66.9697 51.0118 66.9697C50.5217 66.9697 50.0807 67.0855 49.6886 67.3172C49.3055 67.54 49.0025 67.8563 48.7798 68.2661C48.5659 68.6671 48.4635 69.1215 48.4724 69.6294C48.4635 70.1462 48.5659 70.6096 48.7798 71.0194C49.0025 71.4204 49.3055 71.7412 49.6886 71.9817C50.0807 72.2134 50.5217 72.3292 51.0118 72.3292ZM56.9383 70.8991L56.8982 69.7363L60.547 66.1678H61.8969L56.9383 70.8991ZM56.0429 73.1445V63.2541H57.0453V73.1445H56.0429ZM60.8277 73.1445L57.8873 69.7363L58.5957 69.0413L62.1375 73.1445H60.8277Z" 
1228																	fill="#003399"/> 
1229														<g clip-path="url(#clip0_6_8887)"> 
1230																<path d="M56.3267 24.3442C56.3267 10.8993 45.2137 0 31.5051 0C17.7966 0 6.68359 10.8993 6.68359 24.3442C6.68359 36.4949 15.7604 46.5664 27.6268 48.3926V31.3812H21.3244V24.3442H27.6268V18.9809C27.6268 12.8796 31.3325 9.50945 37.0022 9.50945C39.718 9.50945 42.5585 9.98492 42.5585 9.98492V15.9759H39.4286C36.3453 15.9759 35.3835 17.8526 35.3835 19.7778V24.3442H42.2676L41.1671 31.3812H35.3835V48.3926C47.2498 46.5664 56.3267 36.4954 56.3267 24.3442Z" 
1231																			fill="#00388C"/> 
1232																<path d="M41.1669 31.3815L42.2674 24.3445H35.3833V19.7781C35.3833 17.8529 36.3451 15.9762 39.4284 15.9762H42.5583V9.98524C42.5583 9.98524 39.7178 9.50977 37.002 9.50977C31.3323 9.50977 27.6266 12.8799 27.6266 18.9812V24.3445H21.3242V31.3815H27.6266V48.393C28.8904 48.5874 30.1853 48.6887 31.5049 48.6887C32.8245 48.6887 34.1194 48.5874 35.3833 48.393V31.3815H41.1669Z" 
1233																			fill="white"/> 
1234														</g> 
1235														<defs> 
1236																<clipPath id="clip0_6_8887"> 
1237																		<rect width="49.6431" height="48.6884" fill="white" 
1238																					transform="translate(6.68359)"/> 
1239																</clipPath> 
1240														</defs> 
1241												</svg> 
1242												<span class="visually-hidden">Udostępnij na facebook</span> 
1243										</a> 
1244										<a href="https://www.linkedin.com/sharing/share-offsite/?url=${friendlyURL}" target="_blank"> 
1245												<svg width="56" height="77" viewBox="0 0 56 77" fill="none" xmlns="http://www.w3.org/2000/svg" class="align-self-center"> 
1246														<path d="M1.37664 73.1445V63.7887H2.41914V72.1288H6.90993V73.1445H1.37664ZM8.81325 73.1445V66.1678H9.81566V73.1445H8.81325ZM9.30778 64.6575C9.05829 64.6575 8.86672 64.5951 8.73306 64.4704C8.60832 64.3367 8.54595 64.1585 8.54595 63.9357C8.54595 63.713 8.61277 63.5348 8.74643 63.4011C8.88008 63.2675 9.0672 63.2006 9.30778 63.2006C9.54835 63.2006 9.73547 63.2675 9.86912 63.4011C10.0028 63.5259 10.0696 63.7041 10.0696 63.9357C10.0696 64.1496 10.0028 64.3233 9.86912 64.457C9.73547 64.5906 9.54835 64.6575 9.30778 64.6575ZM12.0048 73.1445V66.1678H12.9938L13.0339 67.6246L12.8735 67.6914C12.9626 67.3885 13.1364 67.1123 13.3948 66.8628C13.6532 66.6133 13.9606 66.4128 14.317 66.2613C14.6823 66.1009 15.0566 66.0208 15.4397 66.0208C15.9565 66.0208 16.3886 66.1232 16.7361 66.3282C17.0836 66.5331 17.3465 66.8494 17.5247 67.2771C17.7029 67.7048 17.792 68.2483 17.792 68.9077V73.1445H16.7762V68.9611C16.7762 68.4978 16.7139 68.1191 16.5891 67.8251C16.4733 67.5221 16.2906 67.2994 16.0411 67.1568C15.7917 67.0142 15.4842 66.9474 15.1189 66.9563C14.816 66.9563 14.5353 67.0098 14.2769 67.1167C14.0185 67.2147 13.7957 67.3528 13.6086 67.531C13.4215 67.7093 13.2745 67.9142 13.1676 68.1459C13.0606 68.3775 13.0072 68.627 13.0072 68.8943V73.1445H12.5127C12.4503 73.1445 12.379 73.1445 12.2988 73.1445C12.2186 73.1445 12.1206 73.1445 12.0048 73.1445ZM20.6011 70.8991L20.561 69.7363L24.2097 66.1678H25.5596L20.6011 70.8991ZM19.7056 73.1445V63.2541H20.708V73.1445H19.7056ZM24.4904 73.1445L21.55 69.7363L22.2584 69.0413L25.8002 73.1445H24.4904ZM29.6712 73.2782C28.9762 73.2782 28.3569 73.1267 27.8134 72.8238C27.2788 72.5208 26.86 72.0976 26.557 71.554C26.2541 71.0105 26.1026 70.3868 26.1026 69.6829C26.1026 69.1394 26.1872 68.6493 26.3565 68.2127C26.5258 67.7672 26.762 67.3796 27.0649 67.0499C27.3768 66.7202 27.7465 66.4663 28.1742 66.2881C28.6019 66.1009 29.0653 66.0074 29.5642 66.0074C30.0365 66.0074 30.4642 66.092 30.8473 66.2613C31.2394 66.4306 31.5735 66.6667 31.8497 66.9697C32.1349 67.2637 32.3487 67.6157 32.4913 68.0256C32.6338 68.4354 32.6962 68.8854 32.6784 69.3755L32.665 69.8433H26.8511L26.704 69.0012H31.9032L31.6626 69.2285V68.9077C31.6448 68.5869 31.5512 68.2795 31.3819 67.9855C31.2127 67.6825 30.9721 67.4375 30.6602 67.2504C30.3573 67.0633 29.9919 66.9697 29.5642 66.9697C29.0653 66.9697 28.6331 67.0722 28.2678 67.2771C27.9025 67.4731 27.6218 67.7672 27.4258 68.1592C27.2298 68.5513 27.1317 69.0369 27.1317 69.6161C27.1317 70.1685 27.2387 70.6496 27.4525 71.0595C27.6664 71.4605 27.9693 71.7723 28.3614 71.9951C28.7623 72.2179 29.2435 72.3292 29.8048 72.3292C30.1345 72.3292 30.4597 72.2758 30.7805 72.1689C31.1102 72.053 31.4711 71.8303 31.8631 71.5006L32.3844 72.2223C32.1794 72.4273 31.9344 72.6099 31.6493 72.7703C31.3641 72.9218 31.0523 73.0465 30.7137 73.1445C30.3751 73.2336 30.0276 73.2782 29.6712 73.2782ZM36.9356 73.2782C36.303 73.2782 35.7327 73.1223 35.2248 72.8104C34.7258 72.4985 34.3293 72.0708 34.0353 71.5273C33.7502 70.9749 33.6076 70.3512 33.6076 69.6562C33.6076 68.9522 33.7546 68.3285 34.0487 67.785C34.3427 67.2326 34.7392 66.8004 35.2382 66.4885C35.7372 66.1767 36.2985 66.0208 36.9222 66.0208C37.2697 66.0208 37.6039 66.0742 37.9246 66.1811C38.2543 66.2881 38.5484 66.4395 38.8068 66.6356C39.0652 66.8227 39.279 67.041 39.4483 67.2905C39.6176 67.531 39.7201 67.785 39.7557 68.0523L39.4483 67.9454V63.2541H40.4507V73.1445H39.4617L39.4349 71.407L39.6889 71.3135C39.6532 71.563 39.5508 71.808 39.3815 72.0486C39.2211 72.2802 39.0162 72.4896 38.7667 72.6767C38.5172 72.8639 38.232 73.0109 37.9113 73.1178C37.5994 73.2247 37.2742 73.2782 36.9356 73.2782ZM37.0826 72.356C37.546 72.356 37.9603 72.2401 38.3256 72.0085C38.6909 71.7768 38.9761 71.456 39.181 71.0462C39.3948 70.6363 39.5018 70.1685 39.5018 69.6428C39.5018 69.1171 39.3948 68.6537 39.181 68.2528C38.9761 67.8429 38.6909 67.5221 38.3256 67.2905C37.9603 67.0499 37.546 66.9296 37.0826 66.9296C36.6015 66.9296 36.1782 67.0499 35.8129 67.2905C35.4565 67.5221 35.1714 67.8429 34.9575 68.2528C34.7526 68.6537 34.6501 69.1171 34.6501 69.6428C34.6501 70.1596 34.7526 70.6229 34.9575 71.0328C35.1625 71.4427 35.4476 71.7679 35.8129 72.0085C36.1782 72.2401 36.6015 72.356 37.0826 72.356ZM42.3632 73.1445V72.1555H43.8735V64.7778H42.3632V63.7887H46.4263V64.7778H44.916V72.1555H46.4263V73.1445H42.3632ZM48.3421 73.1445V66.1678H49.3311L49.3712 67.6246L49.2108 67.6914C49.2999 67.3885 49.4737 67.1123 49.7321 66.8628C49.9905 66.6133 50.2979 66.4128 50.6543 66.2613C51.0196 66.1009 51.3938 66.0208 51.777 66.0208C52.2938 66.0208 52.7259 66.1232 53.0734 66.3282C53.4209 66.5331 53.6838 66.8494 53.862 67.2771C54.0402 67.7048 54.1293 68.2483 54.1293 68.9077V73.1445H53.1135V68.9611C53.1135 68.4978 53.0512 68.1191 52.9264 67.8251C52.8106 67.5221 52.6279 67.2994 52.3784 67.1568C52.1289 67.0142 51.8215 66.9474 51.4562 66.9563C51.1533 66.9563 50.8726 67.0098 50.6142 67.1167C50.3558 67.2147 50.133 67.3528 49.9459 67.531C49.7588 67.7093 49.6118 67.9142 49.5049 68.1459C49.3979 68.3775 49.3445 68.627 49.3445 68.8943V73.1445H48.85C48.7876 73.1445 48.7163 73.1445 48.6361 73.1445C48.5559 73.1445 48.4579 73.1445 48.3421 73.1445Z" 
1247																	fill="#003399"/> 
1248														<circle cx="27.3698" cy="24.5065" r="24.5065" 
1249																		fill="#00388C"/> 
1250														<path d="M19.8128 37.1007H14.1347V20.0161H19.8128V37.1007ZM17.012 11.7785C16.6074 11.7452 16.2003 11.7955 15.816 11.9263C15.4316 12.0571 15.0783 12.2655 14.778 12.5386C14.4776 12.8118 14.2367 13.1438 14.0701 13.514C13.9036 13.8842 13.815 14.2848 13.8098 14.6907C13.8046 15.0966 13.8831 15.4993 14.0401 15.8736C14.1972 16.248 14.4297 16.586 14.723 16.8667C15.0163 17.1474 15.3642 17.3647 15.7451 17.5052C16.1259 17.6457 16.5317 17.7063 16.937 17.6833H16.9752C17.3819 17.7173 17.7912 17.6668 18.1774 17.535C18.5636 17.4033 18.9184 17.1932 19.2196 16.9178C19.5208 16.6424 19.7618 16.3078 19.9275 15.9349C20.0932 15.562 20.1801 15.1589 20.1826 14.7508C20.1851 14.3427 20.1033 13.9386 19.9423 13.5636C19.7812 13.1887 19.5444 12.8511 19.2467 12.572C18.949 12.2929 18.5968 12.0783 18.2122 11.9418C17.8277 11.8053 17.4191 11.7497 17.012 11.7785ZM22.9566 37.1007H28.6348V27.5605C28.6128 27.0914 28.6761 26.6221 28.8217 26.1756C29.0341 25.5712 29.4281 25.0473 29.9498 24.6756C30.4714 24.3038 31.0952 24.1024 31.7358 24.0989C33.7963 24.0989 34.6132 25.6649 34.6132 27.9623V37.1007H40.2913V27.3044C40.2913 22.0575 37.4949 19.6143 33.7536 19.6143C32.7247 19.5713 31.7036 19.8111 30.8013 20.3078C29.8991 20.8045 29.1503 21.5389 28.6362 22.4313V20.0161H22.9566C23.0317 21.6189 22.9566 37.1021 22.9566 37.1021V37.1007Z" 
1251																	fill="white"/> 
1252												</svg> 
1253												<span class="visually-hidden">Udostępnij na linkedin</span> 
1254										</a> 
1255										<a href="http://x.com/share?url=${friendlyURL}&text=${htmlUtil.escape(documentTitle)}" target="_blank"> 
1256												<svg width="49" height="77" viewBox="0 0 49 77" fill="none" xmlns="http://www.w3.org/2000/svg" class="align-self-center"> 
1257														<path d="M5.61311 73.1445V64.8045H2.94003V63.7887H9.43563V64.8045H6.65562V73.1445H5.61311ZM11.5021 73.1445L9.08291 66.1678L10.1521 66.1544L12.0367 71.8347L11.7025 71.808L13.7474 67.237H14.3489L16.4072 71.808L16.0062 71.8347L17.9308 66.1678H18.9867L16.5676 73.1445H15.9795L13.8143 68.1726L14.2152 68.1993L12.1169 73.1445H11.5021ZM20.4366 73.1445V66.1678H21.439V73.1445H20.4366ZM20.9312 64.6575C20.6817 64.6575 20.4901 64.5951 20.3564 64.4704C20.2317 64.3367 20.1693 64.1585 20.1693 63.9357C20.1693 63.713 20.2362 63.5348 20.3698 63.4011C20.5035 63.2675 20.6906 63.2006 20.9312 63.2006C21.1717 63.2006 21.3589 63.2675 21.4925 63.4011C21.6262 63.5259 21.693 63.7041 21.693 63.9357C21.693 64.1496 21.6262 64.3233 21.4925 64.457C21.3589 64.5906 21.1717 64.6575 20.9312 64.6575ZM24.5905 73.1445V64.3367H25.5929V73.1445H24.5905ZM23.0133 67.1301V66.1678H27.3571V67.1301H23.0133ZM29.5503 73.1445V64.3367H30.5527V73.1445H29.5503ZM27.9732 67.1301V66.1678H32.3169V67.1301H27.9732ZM36.5566 73.2782C35.8616 73.2782 35.2423 73.1267 34.6988 72.8238C34.1642 72.5208 33.7454 72.0976 33.4425 71.554C33.1395 71.0105 32.988 70.3868 32.988 69.6829C32.988 69.1394 33.0727 68.6493 33.242 68.2127C33.4113 67.7672 33.6474 67.3796 33.9504 67.0499C34.2622 66.7202 34.632 66.4663 35.0597 66.2881C35.4874 66.1009 35.9507 66.0074 36.4497 66.0074C36.9219 66.0074 37.3496 66.092 37.7328 66.2613C38.1248 66.4306 38.459 66.6667 38.7352 66.9697C39.0203 67.2637 39.2342 67.6157 39.3767 68.0256C39.5193 68.4354 39.5817 68.8854 39.5638 69.3755L39.5505 69.8433H33.7365L33.5895 69.0012H38.7886L38.5481 69.2285V68.9077C38.5302 68.5869 38.4367 68.2795 38.2674 67.9855C38.0981 67.6825 37.8575 67.4375 37.5457 67.2504C37.2427 67.0633 36.8774 66.9697 36.4497 66.9697C35.9507 66.9697 35.5186 67.0722 35.1532 67.2771C34.7879 67.4731 34.5072 67.7672 34.3112 68.1592C34.1152 68.5513 34.0172 69.0369 34.0172 69.6161C34.0172 70.1685 34.1241 70.6496 34.3379 71.0595C34.5518 71.4605 34.8547 71.7723 35.2468 71.9951C35.6478 72.2179 36.1289 72.3292 36.6903 72.3292C37.0199 72.3292 37.3452 72.2758 37.6659 72.1689C37.9956 72.053 38.3565 71.8303 38.7485 71.5006L39.2698 72.2223C39.0649 72.4273 38.8198 72.6099 38.5347 72.7703C38.2496 72.9218 37.9377 73.0465 37.5991 73.1445C37.2605 73.2336 36.913 73.2782 36.5566 73.2782ZM40.9876 73.1445V66.1678H41.99L42.0167 68.0256L41.9098 67.7716C42.0078 67.4598 42.1637 67.1702 42.3776 66.9029C42.6003 66.6356 42.8632 66.4217 43.1661 66.2613C43.4691 66.1009 43.8032 66.0208 44.1685 66.0208C44.32 66.0208 44.4626 66.0341 44.5962 66.0608C44.7299 66.0787 44.8413 66.1054 44.9304 66.141L44.6497 67.2637C44.5339 67.2103 44.4136 67.1746 44.2888 67.1568C44.173 67.1301 44.0616 67.1167 43.9547 67.1167C43.6517 67.1167 43.38 67.1702 43.1394 67.2771C42.8988 67.384 42.6939 67.5355 42.5246 67.7315C42.3553 67.9186 42.2261 68.1369 42.137 68.3864C42.0479 68.6359 42.0033 68.9032 42.0033 69.1884V73.1445H40.9876Z" 
1258																	fill="#003399"/> 
1259														<path fill-rule="evenodd" clip-rule="evenodd" 
1260																	d="M0 24.4227C0 11.1507 10.7591 0.391602 24.0311 0.391602C37.3032 0.391602 48.0622 11.1507 48.0622 24.4227C48.0622 37.6948 37.3032 48.4538 24.0311 48.4538C10.7591 48.4538 0 37.6948 0 24.4227ZM23.3114 19.9244L23.3618 20.7559L22.5214 20.6541C19.4621 20.2638 16.7894 18.9401 14.5201 16.7171L13.4107 15.614L13.125 16.4286C12.5198 18.2444 12.9065 20.162 14.1671 21.4517C14.8395 22.1644 14.6882 22.2663 13.5284 21.842C13.125 21.7063 12.772 21.6044 12.7384 21.6553C12.6207 21.7741 13.0241 23.3184 13.3435 23.9293C13.7805 24.7778 14.6714 25.6094 15.6464 26.1015L16.47 26.4918L15.4951 26.5088C14.5538 26.5088 14.5201 26.5257 14.621 26.8821C14.9572 27.9852 16.2851 29.1561 17.7643 29.6652L18.8065 30.0216L17.8988 30.5646C16.5541 31.3452 14.974 31.7864 13.3939 31.8204C12.6375 31.8374 12.0156 31.9052 12.0156 31.9561C12.0156 32.1258 14.0663 33.0762 15.2598 33.4495C18.8401 34.5526 23.0929 34.0774 26.2866 32.1937C28.5559 30.8531 30.8251 28.1888 31.8841 25.6094C32.4556 24.2348 33.0272 21.7232 33.0272 20.5184C33.0272 19.7377 33.0776 19.6359 34.0189 18.7026C34.5736 18.1595 35.0947 17.5656 35.1956 17.3959C35.3636 17.0734 35.3468 17.0734 34.4896 17.3619C33.0608 17.871 32.8591 17.8031 33.5651 17.0395C34.0861 16.4965 34.7081 15.5122 34.7081 15.2237C34.7081 15.1728 34.4559 15.2576 34.1702 15.4104C33.8676 15.5801 33.1952 15.8346 32.691 15.9874L31.7833 16.2758L30.9596 15.7158C30.5058 15.4104 29.867 15.071 29.5308 14.9692C28.6736 14.7316 27.3624 14.7655 26.5892 15.037C24.488 15.8007 23.1601 17.7692 23.3114 19.9244Z" 
1261																	fill="#00388C"/> 
1262												</svg> 
1263												<span class="visually-hidden">Udostępnij na x</span> 
1264										</a> 
1265										<a onclick="copyUrlToClipBoard()"> 
1266											<svg width="65" height="77" viewBox="0 0 65 77" fill="none" xmlns="http://www.w3.org/2000/svg" class="align-self-center"> 
1267													<path d="M2.1652 70.271L2.1251 69.028L7.41782 63.7887H8.82119L2.1652 70.271ZM1.37664 73.1445V63.7887H2.41914V73.1445H1.37664ZM7.64503 73.1445L3.88934 68.1459L4.65117 67.4776L8.95484 73.1445H7.64503ZM12.8081 73.2782C12.1131 73.2782 11.4938 73.1223 10.9503 72.8104C10.4156 72.4985 9.99241 72.0664 9.68055 71.5139C9.3776 70.9615 9.22612 70.3333 9.22612 69.6294C9.22612 68.9344 9.3776 68.3152 9.68055 67.7716C9.99241 67.2281 10.4156 66.8004 10.9503 66.4885C11.4938 66.1767 12.1131 66.0208 12.8081 66.0208C13.4942 66.0208 14.1045 66.1767 14.6391 66.4885C15.1827 66.8004 15.6059 67.2281 15.9088 67.7716C16.2207 68.3152 16.3766 68.9344 16.3766 69.6294C16.3766 70.3333 16.2207 70.9615 15.9088 71.5139C15.6059 72.0664 15.1827 72.4985 14.6391 72.8104C14.1045 73.1223 13.4942 73.2782 12.8081 73.2782ZM12.8081 72.3292C13.2981 72.3292 13.7347 72.2134 14.1179 71.9817C14.501 71.7412 14.7995 71.4204 15.0134 71.0194C15.2272 70.6096 15.3341 70.1462 15.3341 69.6294C15.3341 69.1126 15.2272 68.6537 15.0134 68.2528C14.7995 67.8518 14.501 67.54 14.1179 67.3172C13.7347 67.0855 13.2981 66.9697 12.8081 66.9697C12.318 66.9697 11.8769 67.0855 11.4849 67.3172C11.1017 67.54 10.7988 67.8563 10.576 68.2661C10.3622 68.6671 10.2597 69.1215 10.2686 69.6294C10.2597 70.1462 10.3622 70.6096 10.576 71.0194C10.7988 71.4204 11.1017 71.7412 11.4849 71.9817C11.8769 72.2134 12.318 72.3292 12.8081 72.3292ZM17.8391 76.0849V66.1678H18.8415L18.8682 67.8652L18.6811 67.8919C18.7613 67.5533 18.9351 67.2459 19.2024 66.9697C19.4697 66.6846 19.7949 66.4574 20.1781 66.2881C20.5612 66.1188 20.9666 66.0341 21.3943 66.0341C22.018 66.0341 22.5749 66.19 23.065 66.5019C23.564 66.8138 23.9605 67.2415 24.2545 67.785C24.5486 68.3285 24.6956 68.9522 24.6956 69.6562C24.6956 70.3512 24.553 70.9704 24.2679 71.5139C23.9828 72.0575 23.5907 72.4896 23.0917 72.8104C22.5927 73.1223 22.0314 73.2782 21.4077 73.2782C20.9711 73.2782 20.5567 73.1891 20.1647 73.0109C19.7726 72.8327 19.4385 72.601 19.1623 72.3159C18.8861 72.0218 18.7034 71.7055 18.6143 71.3669H18.8549V76.0849H17.8391ZM21.2473 72.3159C21.7195 72.3159 22.1383 72.2 22.5036 71.9684C22.869 71.7367 23.1585 71.4204 23.3724 71.0194C23.5862 70.6185 23.6932 70.164 23.6932 69.6562C23.6932 69.1394 23.5862 68.6805 23.3724 68.2795C23.1585 67.8785 22.869 67.5622 22.5036 67.3306C22.1383 67.0989 21.7195 66.9831 21.2473 66.9831C20.775 66.9831 20.3518 67.0989 19.9776 67.3306C19.6123 67.5533 19.3227 67.8652 19.1088 68.2661C18.895 68.6671 18.788 69.126 18.788 69.6428C18.788 70.1596 18.895 70.6185 19.1088 71.0194C19.3227 71.4204 19.6123 71.7367 19.9776 71.9684C20.3518 72.2 20.775 72.3159 21.2473 72.3159ZM26.4207 73.1445V66.1678H27.4231V73.1445H26.4207ZM26.9152 64.6575C26.6657 64.6575 26.4741 64.5951 26.3405 64.4704C26.2157 64.3367 26.1533 64.1585 26.1533 63.9357C26.1533 63.713 26.2202 63.5348 26.3538 63.4011C26.4875 63.2675 26.6746 63.2006 26.9152 63.2006C27.1558 63.2006 27.3429 63.2675 27.4765 63.4011C27.6102 63.5259 27.677 63.7041 27.677 63.9357C27.677 64.1496 27.6102 64.3233 27.4765 64.457C27.3429 64.5906 27.1558 64.6575 26.9152 64.6575ZM32.0848 73.2782C31.5502 73.2782 31.0957 73.1713 30.7215 72.9574C30.3562 72.7347 30.0755 72.4139 29.8795 71.9951C29.6924 71.5763 29.5988 71.0551 29.5988 70.4313V66.1678H30.6146V70.2309C30.6146 70.7031 30.677 71.0996 30.8017 71.4204C30.9354 71.7322 31.1314 71.9684 31.3898 72.1288C31.6571 72.2891 31.9823 72.3693 32.3655 72.3693C32.6595 72.3693 32.9313 72.3203 33.1807 72.2223C33.4302 72.1154 33.6485 71.9728 33.8357 71.7946C34.0228 71.6164 34.1698 71.407 34.2767 71.1664C34.3836 70.9259 34.4371 70.6719 34.4371 70.4046V66.1678H35.4395V73.1445H34.4505L34.4104 71.6743L34.5708 71.5941C34.4638 71.906 34.2856 72.1911 34.0361 72.4495C33.7866 72.699 33.4882 72.8995 33.1407 73.051C32.8021 73.2024 32.4501 73.2782 32.0848 73.2782ZM36.4156 75.7642L36.0146 74.9622C36.38 74.9622 36.674 74.8999 36.8968 74.7751C37.1284 74.6593 37.2933 74.4766 37.3913 74.2271C37.4982 73.9866 37.5517 73.6881 37.5517 73.3316V66.1678H38.5674V73.6257C38.5674 74.0534 38.4783 74.4276 38.3001 74.7484C38.1219 75.0692 37.8724 75.3186 37.5517 75.4968C37.2309 75.6751 36.8522 75.7642 36.4156 75.7642ZM38.0729 64.6575C37.8323 64.6575 37.6452 64.5951 37.5116 64.4704C37.3779 64.3367 37.3111 64.1585 37.3111 63.9357C37.3111 63.713 37.3779 63.5348 37.5116 63.4011C37.6452 63.2675 37.8323 63.2006 38.0729 63.2006C38.3135 63.2006 38.5006 63.2675 38.6343 63.4011C38.7679 63.5259 38.8347 63.7041 38.8347 63.9357C38.8347 64.1496 38.7679 64.3233 38.6343 64.457C38.5006 64.5906 38.3135 64.6575 38.0729 64.6575ZM44.3226 73.1445V63.2541H45.325V73.1445H44.3226ZM47.5652 73.1445V66.1678H48.5676V73.1445H47.5652ZM48.0597 64.6575C47.8102 64.6575 47.6187 64.5951 47.485 64.4704C47.3603 64.3367 47.2979 64.1585 47.2979 63.9357C47.2979 63.713 47.3647 63.5348 47.4984 63.4011C47.632 63.2675 47.8191 63.2006 48.0597 63.2006C48.3003 63.2006 48.4874 63.2675 48.6211 63.4011C48.7547 63.5259 48.8215 63.7041 48.8215 63.9357C48.8215 64.1496 48.7547 64.3233 48.6211 64.457C48.4874 64.5906 48.3003 64.6575 48.0597 64.6575ZM50.7567 73.1445V66.1678H51.7458L51.7859 67.6246L51.6255 67.6914C51.7146 67.3885 51.8883 67.1123 52.1467 66.8628C52.4051 66.6133 52.7125 66.4128 53.0689 66.2613C53.4343 66.1009 53.8085 66.0208 54.1916 66.0208C54.7084 66.0208 55.1406 66.1232 55.4881 66.3282C55.8356 66.5331 56.0984 66.8494 56.2766 67.2771C56.4549 67.7048 56.544 68.2483 56.544 68.9077V73.1445H55.5282V68.9611C55.5282 68.4978 55.4658 68.1191 55.3411 67.8251C55.2252 67.5221 55.0426 67.2994 54.7931 67.1568C54.5436 67.0142 54.2362 66.9474 53.8709 66.9563C53.5679 66.9563 53.2872 67.0098 53.0288 67.1167C52.7704 67.2147 52.5477 67.3528 52.3606 67.531C52.1735 67.7093 52.0264 67.9142 51.9195 68.1459C51.8126 68.3775 51.7591 68.627 51.7591 68.8943V73.1445H51.2646C51.2022 73.1445 51.1309 73.1445 51.0508 73.1445C50.9706 73.1445 50.8726 73.1445 50.7567 73.1445ZM59.353 70.8991L59.3129 69.7363L62.9617 66.1678H64.3116L59.353 70.8991ZM58.4575 73.1445V63.2541H59.4599V73.1445H58.4575ZM63.2423 73.1445L60.3019 69.7363L61.0103 69.0413L64.5521 73.1445H63.2423Z" 
1268																fill="#003399"/> 
1269													<circle cx="32.6209" cy="24.0292" r="24.0292" 
1270																	fill="#00388C"/> 
1271													<path d="M42.4832 19.4112H29.1178C28.8224 19.4112 28.5391 19.5286 28.3302 19.7375C28.1214 19.9463 28.004 20.2296 28.004 20.525V33.8905C28.004 34.1859 28.1214 34.4692 28.3302 34.678C28.5391 34.8869 28.8224 35.0042 29.1178 35.0042H42.4832C42.7786 35.0042 43.0619 34.8869 43.2708 34.678C43.4797 34.4692 43.597 34.1859 43.597 33.8905V20.525C43.597 20.2296 43.4797 19.9463 43.2708 19.7375C43.0619 19.5286 42.7786 19.4112 42.4832 19.4112ZM41.3694 32.7767H30.2316V21.6388H41.3694V32.7767ZM25.7764 27.2077C25.7764 27.5031 25.6591 27.7864 25.4502 27.9953C25.2413 28.2042 24.958 28.3215 24.6626 28.3215H22.4351C22.1397 28.3215 21.8564 28.2042 21.6475 27.9953C21.4386 27.7864 21.3213 27.5031 21.3213 27.2077V13.8423C21.3213 13.5469 21.4386 13.2636 21.6475 13.0547C21.8564 12.8459 22.1397 12.7285 22.4351 12.7285H35.8005C36.0959 12.7285 36.3792 12.8459 36.5881 13.0547C36.797 13.2636 36.9143 13.5469 36.9143 13.8423V16.0699C36.9143 16.3653 36.797 16.6486 36.5881 16.8574C36.3792 17.0663 36.0959 17.1837 35.8005 17.1837C35.5051 17.1837 35.2218 17.0663 35.0129 16.8574C34.8041 16.6486 34.6867 16.3653 34.6867 16.0699V14.9561H23.5489V26.094H24.6626C24.958 26.094 25.2413 26.2113 25.4502 26.4202C25.6591 26.6291 25.7764 26.9123 25.7764 27.2077Z" 
1272																fill="white"/> 
1273											</svg> 
1274											<span class="visually-hidden">Skopiuj link do schowka</span> 
1275										</a> 
1276                </div> 
1277            </div> 
1278            <div class="share-wrapper d-flex float-end flex-column justify-content-center align-items-end"> 
1279                <button type="button" onclick="closeSocialMediaShare()" class="shareBtnClose close-btn close-btn__social close-btn__x mb-40px"> 
1280                    <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" id="shareClosed1"> 
1281                        <path d="M22.6663 9.33301L9.33301 22.6663" stroke="#003399" 
1282                              stroke-width="1.5" stroke-linecap="round" 
1283                              stroke-linejoin="round"/> 
1284                        <path d="M9.33301 9.33301L22.6663 22.6663" stroke="#003399" 
1285                              stroke-width="1.5" stroke-linecap="round" 
1286                              stroke-linejoin="round"/> 
1287                    </svg> 
1288                    <span class="visually-hidden">Zamknij opcje udostępniania</span> 
1289                </button> 
1290                <button type="button" onclick="closeSocialMediaShare()" class="shareBtnClose close-btn d-none d-md-flex "> 
1291                    Zamknij<span class="visually-hidden">opcje udostępniania</span> 
1292                </button> 
1293            </div> 
1294        </div> 
1295    </div> 
1296</#macro> 
1297 
1298 
1299<div class="container feux-page-top"> 
1300    <#if getterUtil.getBoolean(isImportant.getData())> 
1301        <section class="event-big-card-wrapper"> 
1302            <@printImportantEventHeader  /> 
1303            <@printSaveInMine /> 
1304            <@printImportantEventContent /> 
1305        </section> 
1306    <#else> 
1307        <section class="event-card-wrapper container px-0"> 
1308            <@printBasicEventHeader /> 
1309            <@printSaveInMine /> 
1310            <@printBasicEventContent /> 
1311        </section> 
1312    </#if> 
1313		<div class="order-6 order-lg-3 d-none d-lg-flex flex-column"> 
1314			<div> 
1315				<@printShare /> 
1316			</div> 
1317		</div> 
1318		<div class="col-12 col-lg-3 p-0 order-4 order-lg-4 d-lg-none"> 
1319				<div class="d-flex flex-column d-lg-none"> 
1320						<div class="d-flex"> 
1321								<@printShare /> 
1322						</div> 
1323				</div> 
1324		</div> 
1325</div> 
1326 
1327<script> 
1328		function copyUrlToClipBoard() { 
1329			navigator.clipboard.writeText("${friendlyURL}"); 
1330 
1331			Liferay.Util.openToast({ 
1332            message: "skopiowano", 
1333            type: 'success', 
1334			}); 
1335
1336 
1337		function openSocialMediaShare(){ 
1338				$('.share-row').css('display', 'block'); 
1339				$('.share-row').attr('aria-hidden', 'false'); 
1340
1341 
1342		function closeSocialMediaShare(){ 
1343				$('.share-row').css('display', 'none'); 
1344				$('.share-row').attr('aria-hidden', 'true'); 
1345
1346 
1347    Liferay.on('allPortletsReady', function () { 
1348        const button = document.getElementById("save-in-mine"); 
1349        if (button) { 
1350            initializeSaveButtonMyContent(button, "${languageUtil.get(locale, "save-in-mine")}", "${languageUtil.get(locale, "remove-from-mine")}"); 
1351
1352 
1353        $(".btn-navigate-to-form").on("click", () => { 
1354            let navigationURL = themeDisplay.getURLHome() + "/wydarzenie-form?event=" + "${.vars["reserved-article-id"].data}"; 
1355            <#if formId?? && formId?has_content> 
1356               navigationURL = navigationURL + "&form=${formId}"; 
1357            </#if> 
1358            Liferay.Util.navigate(navigationURL); 
1359        }); 
1360    }); 
1361</script> 

Inne wydarzenia w tym temacie

Ładowanie
14.04.2026
|
Wt | 10:00
14.04.2026
Wt | 10:00
Spotkanie informacyjne
Stacjonarne
Główny Punkt Informacyjny Funduszy Europejskich w Katowicach
Logotyp Punktu Informacyjnego Funduszy Europejskich
14.04.2026
|
Wt | 11:00
14.04.2026
Wt | 11:00
Webinarium
Online
Główny Punkt Informacyjny Funduszy Europejskich w Katowicach
Logotyp Punktu Informacyjnego Funduszy Europejskich
17.04.2026
|
Pt | 10:00
17.04.2026
Pt | 10:00
Spotkanie informacyjne
Stacjonarne
Główny Punkt Informacyjny Funduszy Europejskich w Katowicach
Logotyp Punktu Informacyjnego Funduszy Europejskich
20.04.2026
|
Pn | 10:00
20.04.2026
Pn | 10:00
Spotkanie informacyjne
Stacjonarne
Główny Punkt Informacyjny Funduszy Europejskich w Katowicach
Logotyp Punktu Informacyjnego Funduszy Europejskich
27.04.2026
|
Pn | 10:00
27.04.2026
Pn | 10:00
Spotkanie informacyjne
Stacjonarne
Główny Punkt Informacyjny Funduszy Europejskich w Katowicach
Logotyp Punktu Informacyjnego Funduszy Europejskich