Gebärdensprache
Fehler bei der Verarbeitung der Vorlage.
The following has evaluated to null or missing: ==> cur_video.PanoptoURL [in template "20098#20124#VIDEOS" at line 110, column 39] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign panoptoURL = cur_video.Panopt... [in template "20098#20124#VIDEOS" at line 110, column 17] ----
1<#import "/um-lr73-base-portal.web-resources_SERVLET_CONTEXT_/common_macros.ftl" as common>
2<#import "/um-lr73-base-portal.web-resources_SERVLET_CONTEXT_/export.ftl" as export>
3
4<@export.includeExportStyles />
5
6<#assign title = .vars['reserved-article-title'].data />
7
8910 <#if Spitzmarke?? && Spitzmarke.data?has_content>11 <#if viewMode == "view" || viewMode == "print">12
13 ${Spitzmarke.data}14 <#if show_modified_date?? && getterUtil.getBoolean(show_modified_date.data)>15 ${getLatestModifiedDate()}16 #if>1718 <#elseif viewMode == "export">1920
21
22 2324 ${Spitzmarke.data}2526 <#if show_modified_date?? && getterUtil.getBoolean(show_modified_date.data)>2728 ${getLatestModifiedDate()}2930 #if>31323334
3536 #if>37 #if>38 <#if hideTitle?? && hideTitle.data != "true">39${title}
40 #if>4142 <#if Video.getSiblings()?has_content>43 <#list Video.getSiblings() as cur_video>44 <#if cur_video.Vorschaubild?? && cur_video.Vorschaubild.data?has_content && cur_video.Datenschutz?? && cur_video.Datenschutz.friendlyUrl?has_content>45 <#assign videoId=cur_video.YoutubeCode.getData()/>46 <#if videoId?starts_with("http")>47 <#assign videoId = videoId?split("/")[3]>48 <#if videoId?starts_with("watch?")>49 <#assign videoId = videoId?split("=")[1]>50 #if>51 #if>52 <#if cur_video.Vorschaubild?has_content>53 <#if viewMode == "view" || viewMode == "print">5455 <#if cur_video.VideoTitle?has_content >56${cur_video.VideoTitle.getData()}
57 #if>58 <#if viewMode == "view">59606162 style="background-image: url(${cur_video.Vorschaubild.getData()}); background-size:cover; padding-bottom:50%;">6364717273747576 Um das Video zu sehen, müssen Sie es durch einen Klick aktivieren.77 Dadurch werden Informationen an Youtube übermittelt und unter78 Umständen dort verarbeitet. Bitte beachten Sie unsere Hinweise und79 Informationen80 zum81 title="Zum Datenschutz" class="arrow-link"82 href="<#if cur_video.Datenschutz.data?has_content>${cur_video.Datenschutz.getFriendlyUrl()}<#else>/datenschutz#if>">.83 class="icon-um icon-um--chevron-right">84 class="link-title">Datenschutz8586879192 <#elseif viewMode == "print">93![]()
94 #if>9596 <#if cur_video.Vorschaubild.BildunterschriftVideo.getData()!="">97${cur_video.Vorschaubild.BildunterschriftVideo.getData()}98 #if>99100 <#elseif viewMode == "export">101 <@export.createExportImageTag jsonContent="${cur_video.Vorschaubild.data}" />102 #if>103 #if>104 #if>105 #list>106 #if>107108 <#if PanoptoVideo?? && PanoptoVideo.getSiblings()?has_content>109 <#list PanoptoVideo.getSiblings() as cur_video>110 <#assign panoptoURL = cur_video.PanoptoURL.getData() />111 <#if panoptoURL?starts_with("https://videoplattform.lubw.baden-wuerttemberg.de")>112113 <#if cur_video.PanoptoVideoTitle?has_content >114${cur_video.PanoptoVideoTitle.getData()}
115 #if>116117120121122 #if>123 #list>124 #if>125126127
128
129<#if viewMode == "print">
130
137
142#if>
143<#if viewMode == "export">
144 <#assign url = portal.getCanonicalURL(themeDisplay.getPortalURL() + themeDisplay.getURLCurrent(), themeDisplay, layout, true, false) />
145
152#if>
153
154
182
183<#function getLatestModifiedDate>
184 <#assign
185 journalArticleLocalService = serviceLocator.findService("com.liferay.journal.service.JournalArticleLocalService")
186 journalArticle = journalArticleLocalService.getLatestArticle(groupId, .vars['reserved-article-id'].data)
187 modifiedDate = journalArticle.modifiedDate
188 />
189
190 <#return modifiedDate?datetime?string('dd.MM.yyyy') />
191#function>