Sono già cliente AXA

Per accedere ai tuoi servizi salute è necessario essere un utente registrato. Utilizza le stesse credenziali con cui accedi all’Area Clienti e all’app MY AXA oppure registrati.

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> linkDestination.addQueryString  [in template "6183680#6184128#413043" at line 71, column 40]

----
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 be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if getterUtil.getBoolean(linkDestina...  [in template "6183680#6184128#413043" at line 71, column 13]
----
1<div class="buttons-list-container text-center margin-top-20 margin-bottom-20"> 
2    <div class="button-container"> 
3        <#list (blockLinkDestination.siblings) as linkDestination> 
4            <#assign linkDestinationIndex = linkDestination?index /> 
5            <#assign namespace = "${randomNamespace}_${linkDestinationIndex}_" /> 
6             
7            <#assign url = "" > 
8            <#assign target = "" > 
9            <#assign modalID = "" > 
10             
11            <#if (linkDestination.blockPage.data)?has_content> 
12                <#assign url = (linkDestination.blockPage.friendlyUrl) > 
13            <#elseif (linkDestination.blockUrl.data)?has_content > 
14                <#assign url = (linkDestination.blockUrl.data) > 
15                <#-- <#assign target = "target='_blank'" > --> 
16            <#elseif (linkDestination.blockWebContent.data)?has_content > 
17                <@modal namespace box /> 
18            </#if> 
19     
20            <#assign buttonTypeCssClass = "btn-" +  
21                linkDestination.blockButtonLabel.blockButtonType.data /> 
22     
23            <#if buttonTypeCssClass?contains("btn-link") > 
24                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-link" /> 
25            <#else> 
26                <#assign buttonTypeCssClass =  buttonTypeCssClass + " lg" /> 
27            </#if> 
28             
29            <#if getterUtil.getBoolean(linkDestination.blockButtonLabel.isBtnBlock.data)>  
30                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-block" /> 
31            </#if> 
32 
33            <#if getterUtil.getBoolean(linkDestination.targetParameter.getData())>  
34                <#assign url = url + "?login_append=opzionale" > 
35            </#if> 
36             
37            <#assign level2Number = linkDestination.trackings.level_2_number.data /> 
38            <#assign clickName = linkDestination.trackings.click_name.data /> 
39            <#assign clickType = linkDestination.trackings.click_type.data /> 
40             
41            <#assign dlpService = linkDestination.trackingsDLP.dlp_service.data /> 
42            <#assign dlpAction = linkDestination.trackingsDLP.dlp_action.data /> 
43            <#assign dlpAdditionalData = linkDestination.trackingsDLP.dlp_additional_data.data /> 
44 
45            <#if !(dlpAdditionalData)?has_content > 
46                <#assign dlpAdditionalData = "''" /> 
47            </#if> 
48     
49            <#if (url)?has_content > 
50                <a id="${namespace}link" 
51                   href="${url?html}" class="btn ${buttonTypeCssClass}" ${target}  
52                   onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
53                            sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
54
55                    ${linkDestination.blockButtonLabel.data} 
56                </a> 
57            <#elseif (linkDestination.blockWebContent.data)?has_content > 
58                <button 
59                    id="${namespace}trigger" 
60                    class="btn ${buttonTypeCssClass} btn-block" 
61                    type="button" 
62                    data-toggle="modal" 
63                    data-target="#${namespace}modal" 
64                    onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
65                             sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
66
67                    ${linkDestination.blockButtonLabel.data} 
68                </button> 
69            </#if> 
70             
71            <#if getterUtil.getBoolean(linkDestination.addQueryString.getData())> 
72	            <script> 
73                    var curHref = $('#${namespace}link').attr("href"); 
74 
75                    if(curHref.includes("?")) 
76                        $('#${namespace}link').attr("href", curHref + location.search.replace('?', '&')); 
77                    else { 
78                        var curAnchor = $(location).attr('hash'); 
79                        console.log(curHref + curAnchor); 
80                        console.log(curHref + location.search); 
81                        console.log(curHref + curAnchor + location.search); 
82                        var temp = curHref + curAnchor + location.search; 
83                        $('#${namespace}link').attr("href", temp); 
84                        console.log($('#${namespace}link').attr("href")); 
85
86                         
87	            </script> 
88            </#if> 
89             
90        </#list> 
91    </div> 
92</div> 
93 
94<#macro modal namespace box> 
95    <#assign wc = blockLinkDestination.blockWebContent.data /> 
96    <#assign wcSplit =  wc?split(",") > 
97 
98	<#assign result = (wcSplit[1]?split(":")[1])?replace("}","") /> 
99	<#assign result = result?replace('"','')  /> 
100 
101	<#assign article = journalArticleLocalService.getLatestArticle(result?number) /> 
102	 
103	<#assign modalID = randomNamespace+"showModal" > 
104 
105    <#-- Modal --> 
106    <div 
107        id="${namespace}modal" 
108        class="modal fade axa-modal modal-title-outside" 
109        tabindex="-1" 
110        role="dialog" 
111        aria-labelledby="${namespace}title" 
112        aria-hidden="true" 
113
114    	<div class="modal-dialog modal-lg" role="document"> 
115        	<div class="modal-content"> 
116        		<div class="modal-header"> 
117        			<button type="button" class="close typo14" data-dismiss="modal" aria-hidden="true"> 
118        			    Close 
119        			</button> 
120        			<h3 id="${namespace}title" class="modal-title text-center typo38"> 
121        			    <#if (blockLinkDestination.blockModalTitle.data)?has_content> 
122        			        ${blockLinkDestination.blockModalTitle.data?html} 
123        	            <#else> 
124        	                --- 
125        	            </#if> 
126                    </h3> 
127        		</div> 
128        		<div class="modal-body"> 
129        			${journalContent.getContent( 
130        			    groupId, article.articleId?string, "view", locale, 
131        			    themeDisplay)} 
132        		</div> 
133        		<#-- 
134        		<div class="modal-footer"> 
135        			<button class="btn btn-primary btn-cancel" data-dismiss="modal" aria-hidden="true"> 
136        				Chiudi 
137        			</button> 
138        		</div> 
139        		--> 
140        	</div> 
141        </div> 
142    </div> 
143 
144</#macro> 
Non sono cliente

Puoi valutare i tuoi sintomi anche senza essere cliente AXA. In modalità ospite non sarà possibile accedere ai servizi salute del portale come l’invio del report al medico in caso di necessità

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> linkDestination.addQueryString  [in template "6183680#6184128#413043" at line 71, column 40]

----
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 be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if getterUtil.getBoolean(linkDestina...  [in template "6183680#6184128#413043" at line 71, column 13]
----
1<div class="buttons-list-container text-center margin-top-20 margin-bottom-20"> 
2    <div class="button-container"> 
3        <#list (blockLinkDestination.siblings) as linkDestination> 
4            <#assign linkDestinationIndex = linkDestination?index /> 
5            <#assign namespace = "${randomNamespace}_${linkDestinationIndex}_" /> 
6             
7            <#assign url = "" > 
8            <#assign target = "" > 
9            <#assign modalID = "" > 
10             
11            <#if (linkDestination.blockPage.data)?has_content> 
12                <#assign url = (linkDestination.blockPage.friendlyUrl) > 
13            <#elseif (linkDestination.blockUrl.data)?has_content > 
14                <#assign url = (linkDestination.blockUrl.data) > 
15                <#-- <#assign target = "target='_blank'" > --> 
16            <#elseif (linkDestination.blockWebContent.data)?has_content > 
17                <@modal namespace box /> 
18            </#if> 
19     
20            <#assign buttonTypeCssClass = "btn-" +  
21                linkDestination.blockButtonLabel.blockButtonType.data /> 
22     
23            <#if buttonTypeCssClass?contains("btn-link") > 
24                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-link" /> 
25            <#else> 
26                <#assign buttonTypeCssClass =  buttonTypeCssClass + " lg" /> 
27            </#if> 
28             
29            <#if getterUtil.getBoolean(linkDestination.blockButtonLabel.isBtnBlock.data)>  
30                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-block" /> 
31            </#if> 
32 
33            <#if getterUtil.getBoolean(linkDestination.targetParameter.getData())>  
34                <#assign url = url + "?login_append=opzionale" > 
35            </#if> 
36             
37            <#assign level2Number = linkDestination.trackings.level_2_number.data /> 
38            <#assign clickName = linkDestination.trackings.click_name.data /> 
39            <#assign clickType = linkDestination.trackings.click_type.data /> 
40             
41            <#assign dlpService = linkDestination.trackingsDLP.dlp_service.data /> 
42            <#assign dlpAction = linkDestination.trackingsDLP.dlp_action.data /> 
43            <#assign dlpAdditionalData = linkDestination.trackingsDLP.dlp_additional_data.data /> 
44 
45            <#if !(dlpAdditionalData)?has_content > 
46                <#assign dlpAdditionalData = "''" /> 
47            </#if> 
48     
49            <#if (url)?has_content > 
50                <a id="${namespace}link" 
51                   href="${url?html}" class="btn ${buttonTypeCssClass}" ${target}  
52                   onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
53                            sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
54
55                    ${linkDestination.blockButtonLabel.data} 
56                </a> 
57            <#elseif (linkDestination.blockWebContent.data)?has_content > 
58                <button 
59                    id="${namespace}trigger" 
60                    class="btn ${buttonTypeCssClass} btn-block" 
61                    type="button" 
62                    data-toggle="modal" 
63                    data-target="#${namespace}modal" 
64                    onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
65                             sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
66
67                    ${linkDestination.blockButtonLabel.data} 
68                </button> 
69            </#if> 
70             
71            <#if getterUtil.getBoolean(linkDestination.addQueryString.getData())> 
72	            <script> 
73                    var curHref = $('#${namespace}link').attr("href"); 
74 
75                    if(curHref.includes("?")) 
76                        $('#${namespace}link').attr("href", curHref + location.search.replace('?', '&')); 
77                    else { 
78                        var curAnchor = $(location).attr('hash'); 
79                        console.log(curHref + curAnchor); 
80                        console.log(curHref + location.search); 
81                        console.log(curHref + curAnchor + location.search); 
82                        var temp = curHref + curAnchor + location.search; 
83                        $('#${namespace}link').attr("href", temp); 
84                        console.log($('#${namespace}link').attr("href")); 
85
86                         
87	            </script> 
88            </#if> 
89             
90        </#list> 
91    </div> 
92</div> 
93 
94<#macro modal namespace box> 
95    <#assign wc = blockLinkDestination.blockWebContent.data /> 
96    <#assign wcSplit =  wc?split(",") > 
97 
98	<#assign result = (wcSplit[1]?split(":")[1])?replace("}","") /> 
99	<#assign result = result?replace('"','')  /> 
100 
101	<#assign article = journalArticleLocalService.getLatestArticle(result?number) /> 
102	 
103	<#assign modalID = randomNamespace+"showModal" > 
104 
105    <#-- Modal --> 
106    <div 
107        id="${namespace}modal" 
108        class="modal fade axa-modal modal-title-outside" 
109        tabindex="-1" 
110        role="dialog" 
111        aria-labelledby="${namespace}title" 
112        aria-hidden="true" 
113
114    	<div class="modal-dialog modal-lg" role="document"> 
115        	<div class="modal-content"> 
116        		<div class="modal-header"> 
117        			<button type="button" class="close typo14" data-dismiss="modal" aria-hidden="true"> 
118        			    Close 
119        			</button> 
120        			<h3 id="${namespace}title" class="modal-title text-center typo38"> 
121        			    <#if (blockLinkDestination.blockModalTitle.data)?has_content> 
122        			        ${blockLinkDestination.blockModalTitle.data?html} 
123        	            <#else> 
124        	                --- 
125        	            </#if> 
126                    </h3> 
127        		</div> 
128        		<div class="modal-body"> 
129        			${journalContent.getContent( 
130        			    groupId, article.articleId?string, "view", locale, 
131        			    themeDisplay)} 
132        		</div> 
133        		<#-- 
134        		<div class="modal-footer"> 
135        			<button class="btn btn-primary btn-cancel" data-dismiss="modal" aria-hidden="true"> 
136        				Chiudi 
137        			</button> 
138        		</div> 
139        		--> 
140        	</div> 
141        </div> 
142    </div> 
143 
144</#macro> 

Per accedere ai tuoi servizi salute è necessario essere un utente registrato. Utilizza le stesse credenziali con cui accedi all’Area Clienti e all’app MY AXA oppure registrati.

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> linkDestination.addQueryString  [in template "6183680#6184128#413043" at line 71, column 40]

----
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 be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if getterUtil.getBoolean(linkDestina...  [in template "6183680#6184128#413043" at line 71, column 13]
----
1<div class="buttons-list-container text-center margin-top-20 margin-bottom-20"> 
2    <div class="button-container"> 
3        <#list (blockLinkDestination.siblings) as linkDestination> 
4            <#assign linkDestinationIndex = linkDestination?index /> 
5            <#assign namespace = "${randomNamespace}_${linkDestinationIndex}_" /> 
6             
7            <#assign url = "" > 
8            <#assign target = "" > 
9            <#assign modalID = "" > 
10             
11            <#if (linkDestination.blockPage.data)?has_content> 
12                <#assign url = (linkDestination.blockPage.friendlyUrl) > 
13            <#elseif (linkDestination.blockUrl.data)?has_content > 
14                <#assign url = (linkDestination.blockUrl.data) > 
15                <#-- <#assign target = "target='_blank'" > --> 
16            <#elseif (linkDestination.blockWebContent.data)?has_content > 
17                <@modal namespace box /> 
18            </#if> 
19     
20            <#assign buttonTypeCssClass = "btn-" +  
21                linkDestination.blockButtonLabel.blockButtonType.data /> 
22     
23            <#if buttonTypeCssClass?contains("btn-link") > 
24                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-link" /> 
25            <#else> 
26                <#assign buttonTypeCssClass =  buttonTypeCssClass + " lg" /> 
27            </#if> 
28             
29            <#if getterUtil.getBoolean(linkDestination.blockButtonLabel.isBtnBlock.data)>  
30                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-block" /> 
31            </#if> 
32 
33            <#if getterUtil.getBoolean(linkDestination.targetParameter.getData())>  
34                <#assign url = url + "?login_append=opzionale" > 
35            </#if> 
36             
37            <#assign level2Number = linkDestination.trackings.level_2_number.data /> 
38            <#assign clickName = linkDestination.trackings.click_name.data /> 
39            <#assign clickType = linkDestination.trackings.click_type.data /> 
40             
41            <#assign dlpService = linkDestination.trackingsDLP.dlp_service.data /> 
42            <#assign dlpAction = linkDestination.trackingsDLP.dlp_action.data /> 
43            <#assign dlpAdditionalData = linkDestination.trackingsDLP.dlp_additional_data.data /> 
44 
45            <#if !(dlpAdditionalData)?has_content > 
46                <#assign dlpAdditionalData = "''" /> 
47            </#if> 
48     
49            <#if (url)?has_content > 
50                <a id="${namespace}link" 
51                   href="${url?html}" class="btn ${buttonTypeCssClass}" ${target}  
52                   onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
53                            sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
54
55                    ${linkDestination.blockButtonLabel.data} 
56                </a> 
57            <#elseif (linkDestination.blockWebContent.data)?has_content > 
58                <button 
59                    id="${namespace}trigger" 
60                    class="btn ${buttonTypeCssClass} btn-block" 
61                    type="button" 
62                    data-toggle="modal" 
63                    data-target="#${namespace}modal" 
64                    onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
65                             sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
66
67                    ${linkDestination.blockButtonLabel.data} 
68                </button> 
69            </#if> 
70             
71            <#if getterUtil.getBoolean(linkDestination.addQueryString.getData())> 
72	            <script> 
73                    var curHref = $('#${namespace}link').attr("href"); 
74 
75                    if(curHref.includes("?")) 
76                        $('#${namespace}link').attr("href", curHref + location.search.replace('?', '&')); 
77                    else { 
78                        var curAnchor = $(location).attr('hash'); 
79                        console.log(curHref + curAnchor); 
80                        console.log(curHref + location.search); 
81                        console.log(curHref + curAnchor + location.search); 
82                        var temp = curHref + curAnchor + location.search; 
83                        $('#${namespace}link').attr("href", temp); 
84                        console.log($('#${namespace}link').attr("href")); 
85
86                         
87	            </script> 
88            </#if> 
89             
90        </#list> 
91    </div> 
92</div> 
93 
94<#macro modal namespace box> 
95    <#assign wc = blockLinkDestination.blockWebContent.data /> 
96    <#assign wcSplit =  wc?split(",") > 
97 
98	<#assign result = (wcSplit[1]?split(":")[1])?replace("}","") /> 
99	<#assign result = result?replace('"','')  /> 
100 
101	<#assign article = journalArticleLocalService.getLatestArticle(result?number) /> 
102	 
103	<#assign modalID = randomNamespace+"showModal" > 
104 
105    <#-- Modal --> 
106    <div 
107        id="${namespace}modal" 
108        class="modal fade axa-modal modal-title-outside" 
109        tabindex="-1" 
110        role="dialog" 
111        aria-labelledby="${namespace}title" 
112        aria-hidden="true" 
113
114    	<div class="modal-dialog modal-lg" role="document"> 
115        	<div class="modal-content"> 
116        		<div class="modal-header"> 
117        			<button type="button" class="close typo14" data-dismiss="modal" aria-hidden="true"> 
118        			    Close 
119        			</button> 
120        			<h3 id="${namespace}title" class="modal-title text-center typo38"> 
121        			    <#if (blockLinkDestination.blockModalTitle.data)?has_content> 
122        			        ${blockLinkDestination.blockModalTitle.data?html} 
123        	            <#else> 
124        	                --- 
125        	            </#if> 
126                    </h3> 
127        		</div> 
128        		<div class="modal-body"> 
129        			${journalContent.getContent( 
130        			    groupId, article.articleId?string, "view", locale, 
131        			    themeDisplay)} 
132        		</div> 
133        		<#-- 
134        		<div class="modal-footer"> 
135        			<button class="btn btn-primary btn-cancel" data-dismiss="modal" aria-hidden="true"> 
136        				Chiudi 
137        			</button> 
138        		</div> 
139        		--> 
140        	</div> 
141        </div> 
142    </div> 
143 
144</#macro> 

Puoi valutare i tuoi sintomi anche senza essere cliente AXA. In modalità ospite non sarà possibile accedere ai servizi salute del portale come l’invio del report al medico in caso di necessità

Si è verificato un errore nell'elaborarazione del modello.
The following has evaluated to null or missing:
==> linkDestination.addQueryString  [in template "6183680#6184128#413043" at line 71, column 40]

----
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 be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if getterUtil.getBoolean(linkDestina...  [in template "6183680#6184128#413043" at line 71, column 13]
----
1<div class="buttons-list-container text-center margin-top-20 margin-bottom-20"> 
2    <div class="button-container"> 
3        <#list (blockLinkDestination.siblings) as linkDestination> 
4            <#assign linkDestinationIndex = linkDestination?index /> 
5            <#assign namespace = "${randomNamespace}_${linkDestinationIndex}_" /> 
6             
7            <#assign url = "" > 
8            <#assign target = "" > 
9            <#assign modalID = "" > 
10             
11            <#if (linkDestination.blockPage.data)?has_content> 
12                <#assign url = (linkDestination.blockPage.friendlyUrl) > 
13            <#elseif (linkDestination.blockUrl.data)?has_content > 
14                <#assign url = (linkDestination.blockUrl.data) > 
15                <#-- <#assign target = "target='_blank'" > --> 
16            <#elseif (linkDestination.blockWebContent.data)?has_content > 
17                <@modal namespace box /> 
18            </#if> 
19     
20            <#assign buttonTypeCssClass = "btn-" +  
21                linkDestination.blockButtonLabel.blockButtonType.data /> 
22     
23            <#if buttonTypeCssClass?contains("btn-link") > 
24                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-link" /> 
25            <#else> 
26                <#assign buttonTypeCssClass =  buttonTypeCssClass + " lg" /> 
27            </#if> 
28             
29            <#if getterUtil.getBoolean(linkDestination.blockButtonLabel.isBtnBlock.data)>  
30                <#assign buttonTypeCssClass =  buttonTypeCssClass + " btn-block" /> 
31            </#if> 
32 
33            <#if getterUtil.getBoolean(linkDestination.targetParameter.getData())>  
34                <#assign url = url + "?login_append=opzionale" > 
35            </#if> 
36             
37            <#assign level2Number = linkDestination.trackings.level_2_number.data /> 
38            <#assign clickName = linkDestination.trackings.click_name.data /> 
39            <#assign clickType = linkDestination.trackings.click_type.data /> 
40             
41            <#assign dlpService = linkDestination.trackingsDLP.dlp_service.data /> 
42            <#assign dlpAction = linkDestination.trackingsDLP.dlp_action.data /> 
43            <#assign dlpAdditionalData = linkDestination.trackingsDLP.dlp_additional_data.data /> 
44 
45            <#if !(dlpAdditionalData)?has_content > 
46                <#assign dlpAdditionalData = "''" /> 
47            </#if> 
48     
49            <#if (url)?has_content > 
50                <a id="${namespace}link" 
51                   href="${url?html}" class="btn ${buttonTypeCssClass}" ${target}  
52                   onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
53                            sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
54
55                    ${linkDestination.blockButtonLabel.data} 
56                </a> 
57            <#elseif (linkDestination.blockWebContent.data)?has_content > 
58                <button 
59                    id="${namespace}trigger" 
60                    class="btn ${buttonTypeCssClass} btn-block" 
61                    type="button" 
62                    data-toggle="modal" 
63                    data-target="#${namespace}modal" 
64                    onclick="tcEvent3(this,'${level2Number}','${clickName}','${clickType}'); 
65                             sendDlpEvent('${dlpService}', '${dlpAction}', ${dlpAdditionalData})" 
66
67                    ${linkDestination.blockButtonLabel.data} 
68                </button> 
69            </#if> 
70             
71            <#if getterUtil.getBoolean(linkDestination.addQueryString.getData())> 
72	            <script> 
73                    var curHref = $('#${namespace}link').attr("href"); 
74 
75                    if(curHref.includes("?")) 
76                        $('#${namespace}link').attr("href", curHref + location.search.replace('?', '&')); 
77                    else { 
78                        var curAnchor = $(location).attr('hash'); 
79                        console.log(curHref + curAnchor); 
80                        console.log(curHref + location.search); 
81                        console.log(curHref + curAnchor + location.search); 
82                        var temp = curHref + curAnchor + location.search; 
83                        $('#${namespace}link').attr("href", temp); 
84                        console.log($('#${namespace}link').attr("href")); 
85
86                         
87	            </script> 
88            </#if> 
89             
90        </#list> 
91    </div> 
92</div> 
93 
94<#macro modal namespace box> 
95    <#assign wc = blockLinkDestination.blockWebContent.data /> 
96    <#assign wcSplit =  wc?split(",") > 
97 
98	<#assign result = (wcSplit[1]?split(":")[1])?replace("}","") /> 
99	<#assign result = result?replace('"','')  /> 
100 
101	<#assign article = journalArticleLocalService.getLatestArticle(result?number) /> 
102	 
103	<#assign modalID = randomNamespace+"showModal" > 
104 
105    <#-- Modal --> 
106    <div 
107        id="${namespace}modal" 
108        class="modal fade axa-modal modal-title-outside" 
109        tabindex="-1" 
110        role="dialog" 
111        aria-labelledby="${namespace}title" 
112        aria-hidden="true" 
113
114    	<div class="modal-dialog modal-lg" role="document"> 
115        	<div class="modal-content"> 
116        		<div class="modal-header"> 
117        			<button type="button" class="close typo14" data-dismiss="modal" aria-hidden="true"> 
118        			    Close 
119        			</button> 
120        			<h3 id="${namespace}title" class="modal-title text-center typo38"> 
121        			    <#if (blockLinkDestination.blockModalTitle.data)?has_content> 
122        			        ${blockLinkDestination.blockModalTitle.data?html} 
123        	            <#else> 
124        	                --- 
125        	            </#if> 
126                    </h3> 
127        		</div> 
128        		<div class="modal-body"> 
129        			${journalContent.getContent( 
130        			    groupId, article.articleId?string, "view", locale, 
131        			    themeDisplay)} 
132        		</div> 
133        		<#-- 
134        		<div class="modal-footer"> 
135        			<button class="btn btn-primary btn-cancel" data-dismiss="modal" aria-hidden="true"> 
136        				Chiudi 
137        			</button> 
138        		</div> 
139        		--> 
140        	</div> 
141        </div> 
142    </div> 
143 
144</#macro>