Navigation

  • Skip to Content
Sign In
en-gb de-de
search
Safety |
Customer connection |
Global Locations |
News |
Events |
Contact us
Logo
Brands
Certifications
Corporate Responsability
Cultural and social initiatives
Integrity and code of ethics
Mission and values
Discover SIAD Austria
Most Common Gases
Acetylene (C2H2)
Argon (Ar)
Carbon Dioxide (CO2)
Dry Ice (CO2)
Helium (He)
Hydrogen (H2)
Krypton (Kr)
Neon (Ne)
Nitrogen (N2)
Oxygen (O2)
Xenon (Xe)
All Gases
Gas Mixtures
Speciality gases
Safety Data Sheets
Find the gas you need
At SIAD, we promise an uninterrupted supply of any type of gas, at any quantity, almost anywhere in the world.
All Gases
Analytical Assistance
Catalogues
Environmental biology and chemistry
Scarlet Line
Supply modes
Technical Assistance
Total Gas Management
Discover all our services
Automotive
Cement
Chemical and pharmaceutical
Electronics assembly
Environmental
Food and beverage
Glass
Healthcare
Heat treatments
Metal Production
Oil and gas
Refrigerant gases
Semiconductor
Welding and cutting
See all indutries

Megamenu Our Company

Brands
Certifications
Corporate Responsability
Cultural and social initiatives
Integrity and code of ethics
Mission and values
Discover SIAD Austria
An error occurred while processing the template.
The following has evaluated to null or missing:
==> cur_Link.newTab  [in template "20116#20160#50618" at line 79, column 82]

----
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 cur_Link.newTab.getData()?has_con...  [in template "20116#20160#50618" at line 79, column 77]
----
1<#assign UserService = serviceLocator.findService("com.liferay.portal.kernel.service.UserService")> 
2<#assign isLogged = false> 
3 
4<#assign usrRoles = UserService.getCurrentUser().getRoles()> 
5<#list usrRoles as usrRole> 
6    <#if (usrRole.getName() == "Guest")> 
7        <#assign isLogged = true> 
8    </#if> 
9</#list> 
10 
11<div class="footer-links prova"> 
12<#if Testo.getSiblings()?has_content> 
13    <#assign count = 0 > 
14    <#assign oddEven = 'odd'> 
15    <#assign lastRow = Testo.getSiblings()?size> 
16	<#list Testo.getSiblings() as cur_Testo> 
17	    <#assign count = count +1 > 
18	    <#if count%2==0> 
19	        <#assign oddEven = 'even'> 
20	    <#else> 
21	        <#assign oddEven = 'odd'> 
22	    </#if> 
23	    <#if count lt lastRow> 
24    	    <div class="footer-${oddEven} ${cur_Testo.CSSClass.getData()}"> 
25        	    <div class="footer-content"> 
26        	    <span class="footer-title"> 
27        		    ${cur_Testo.getData()} 
28        		</span> 
29        		    <#if cur_Testo.TitoloLink.getSiblings()?has_content> 
30        		        <#assign countx = 0 /> 
31        	            <#list cur_Testo.TitoloLink.getSiblings() as cur_Link> 
32        	                <#assign countx = countx+1 /> 
33        	                 
34        	                 
35        	                 
36        	                <a href="${cur_Link.Link.getFriendlyUrl()}"> 
37        	                    ${cur_Link.getData()} 
38        	                </a> 
39        	                <#if countx lt cur_Testo.TitoloLink.getSiblings()?size> 
40        	                    <span class="topmenu-separator" style="font-size: 10px;">|</span> 
41        	                </#if> 
42        	                 
43        	                 
44        	                 
45        	                 
46        	                 
47        	                 
48                        </#list> 
49                    </#if> 
50                </div> 
51    		</div> 
52	    </#if> 
53	</#list> 
54</#if> 
55</div> 
56 
57<div class="footer-links2"> 
58<#if Testo.getSiblings()?has_content> 
59    <#assign count2 = 0 > 
60    <#assign oddEven = 'odd'> 
61    <#assign lastRow = Testo.getSiblings()?size> 
62	<#list Testo.getSiblings() as cur_Testo> 
63        <#assign count2 = count2 +1 > 
64        <#if count2%2==0> 
65            <#assign oddEven = 'even'> 
66        <#else> 
67            <#assign oddEven = 'odd'> 
68        </#if> 
69        <#if lastRow==count2> 
70            <div class="footer-${oddEven} ${cur_Testo.CSSClass.getData()}"> 
71                <div class="footer-content"> 
72                <span class="footer-title"> 
73        		    ${cur_Testo.getData()} 
74        		</span> 
75        		    <#if cur_Testo.TitoloLink.getSiblings()?has_content> 
76        		        <#assign count2 = 0 /> 
77        	            <#list cur_Testo.TitoloLink.getSiblings() as cur_Link> 
78        	                <#assign count2 = count2+1 /> 
79        	                <a href="${cur_Link.Link.getFriendlyUrl()}" <#if cur_Link.newTab.getData()?has_content>target="_blank"</#if>> 
80        	                    ${cur_Link.getData()} 
81        	                </a> 
82    	                    <span class="topmenu-separator">|</span> 
83                        </#list> 
84                    </#if> 
85                    <div class="footer-social"> 
86		<#if SocialImage.getSiblings()?has_content> 
87			<#list SocialImage.getSiblings() as cur_SocialImage> 
88				<#if cur_SocialImage.getData()?? && cur_SocialImage.getData() != ""> 
89					<a href="${cur_SocialImage.SocialLink.getData()}"><img alt="${cur_SocialImage.getAttribute("alt")}" src="${cur_SocialImage.getData()}" /></a> 
90				</#if> 
91			</#list> 
92		</#if> 
93	</div> 
94                </div> 
95    		</div> 
96 
97	    </#if> 
98	</#list> 
99</#if> 
100</div>