Error executing template "Designs/Hags2024/_parsed/default.parsed.cshtml"
System.TypeInitializationException: The type initializer for 'System.Collections.Generic.EqualityComparer`1' threw an exception. ---> System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
at System.Collections.Generic.EqualityComparer`1.CreateComparer()
at System.Collections.Generic.EqualityComparer`1..cctor()
--- End of inner exception stack trace ---
at System.Collections.Generic.EqualityComparer`1.get_Default()
at System.Array.IndexOf[T](T[] array, T value, Int32 startIndex, Int32 count)
at System.Array.IndexOf[T](T[] array, T value)
at System.SZArrayHelper.Contains[T](T value)
at System.Linq.Enumerable.Contains[TSource](IEnumerable`1 source, TSource value)
at Microsoft.CodeAnalysis.CSharp.CSharpDiagnosticFilter.Filter(Diagnostic d, Int32 warningLevelOption, NullableContextOptions nullableOption, ReportDiagnostic generalDiagnosticOption, IDictionary`2 specificDiagnosticOptions)
at Microsoft.CodeAnalysis.CSharp.CSharpCompilationOptions.FilterDiagnostic(Diagnostic diagnostic)
at Microsoft.CodeAnalysis.Compilation.FilterAndAppendDiagnostics(DiagnosticBag accumulator, IEnumerable`1 incoming, HashSet`1 exclude)
at Microsoft.CodeAnalysis.Compilation.FilterAndAppendAndFreeDiagnostics(DiagnosticBag accumulator, DiagnosticBag& incoming)
at Microsoft.CodeAnalysis.CSharp.CSharpCompilation.GetRuntimeMetadataVersion(EmitOptions emitOptions, DiagnosticBag diagnostics)
at Microsoft.CodeAnalysis.CSharp.CSharpCompilation.CreateModuleBuilder(EmitOptions emitOptions, IMethodSymbol debugEntryPoint, Stream sourceLinkStream, IEnumerable`1 embeddedTexts, IEnumerable`1 manifestResources, CompilationTestData testData, DiagnosticBag diagnostics, CancellationToken cancellationToken)
at Microsoft.CodeAnalysis.Compilation.CheckOptionsAndCreateModuleBuilder(DiagnosticBag diagnostics, IEnumerable`1 manifestResources, EmitOptions options, IMethodSymbol debugEntryPoint, Stream sourceLinkStream, IEnumerable`1 embeddedTexts, CompilationTestData testData, CancellationToken cancellationToken)
at Microsoft.CodeAnalysis.Compilation.Emit(Stream peStream, Stream metadataPEStream, Stream pdbStream, Stream xmlDocumentationStream, Stream win32Resources, IEnumerable`1 manifestResources, EmitOptions options, IMethodSymbol debugEntryPoint, Stream sourceLinkStream, IEnumerable`1 embeddedTexts, CompilationTestData testData, CancellationToken cancellationToken)
at Microsoft.CodeAnalysis.Compilation.Emit(Stream peStream, Stream pdbStream, Stream xmlDocumentationStream, Stream win32Resources, IEnumerable`1 manifestResources, EmitOptions options, IMethodSymbol debugEntryPoint, Stream sourceLinkStream, IEnumerable`1 embeddedTexts, Stream metadataPEStream, CancellationToken cancellationToken)
at Microsoft.CodeAnalysis.Compilation.Emit(Stream peStream, Stream pdbStream, Stream xmlDocumentationStream, Stream win32Resources, IEnumerable`1 manifestResources, EmitOptions options, CancellationToken cancellationToken)
at RazorEngine.Roslyn.CSharp.RoslynCompilerServiceBase.CompileType(TypeContext context)
at RazorEngine.Templating.RazorEngineCore.CreateTemplateType(ITemplateSource razorTemplate, Type modelType)
at RazorEngine.Templating.RazorEngineCore.Compile(ITemplateKey key, Type modelType)
at RazorEngine.Templating.RazorEngineService.CompileAndCacheInternal(ITemplateKey key, Type modelType)
at RazorEngine.Templating.RazorEngineService.GetCompiledTemplate(ITemplateKey key, Type modelType, Boolean compileOnCacheMiss)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.DynamicWrapperService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at RazorEngine.Templating.RazorEngineServiceExtensions.<>c__DisplayClass16_0.<RunCompile>b__0(TextWriter writer)
at RazorEngine.Templating.RazorEngineServiceExtensions.WithWriter(Action`1 withWriter)
at RazorEngine.Templating.RazorEngineServiceExtensions.RunCompile(IRazorEngineService service, String name, Type modelType, Object model, DynamicViewBag viewBag)
at Dynamicweb.Rendering.RazorTemplateRenderingProvider.Render(Template template)
at Dynamicweb.Rendering.TemplateRenderingService.Render(Template template)
at Dynamicweb.Rendering.Template.RenderRazorTemplate()
1 @inherits Dynamicweb.Rendering.RazorTemplateBase<Dynamicweb.Rendering.RazorTemplateModel<Dynamicweb.Rendering.Template>>
2 @using System;
3 @using System.Linq;
4 @using System.Web.Optimization;
5 @using HagsWeb.Library.Methods.Page;
6 @using HagsWeb.Library.State;
7 @using HagsWeb.Library.Utilities;
8 @using Dynamicweb.Content;
9 @using Dynamicweb.Ecommerce.International;
10
11 @{
12 bool inDev = false;
13 inDev = inDev || GetGlobalValue("Global:Request.Url").Contains("http://hagsdw915solution.");
14 inDev = inDev || GetGlobalValue("Global:Request.Url").Contains("https://hagsdev.hags.");
15 inDev = inDev || GetGlobalValue("Global:Request.Url").Contains("https://hagslang.hags.");
16 inDev = inDev || GetGlobalValue("Global:Request.Url").Contains("https://hagslive.hags.");
17
18 int masterAreaId = int.TryParse(GetGlobalValue("Global:Area.ID"), out masterAreaId) ? masterAreaId : 0;
19 Dynamicweb.Content.Area masterArea = new Dynamicweb.Content.AreaService().GetArea(masterAreaId);
20
21 string themeTag = HagsPages.GetThemeByNavigationTag(GetGlobalValue("Global:Page.Top.ID")); // gets the page ID at the top of the tree this page sits on.
22 string siteNavigation = HagsPages.GetActiveAreas();
23 string htmlLang = GetGlobalValue("Global:Area.LongLang");
24 string siteAreaName = @GetString("DwAreaName");
25 string designBaseUrl = @GetString("Template:DesignBaseUrl");
26 var unixTimestamp = ((DateTimeOffset)DateTime.UtcNow).ToUnixTimeSeconds();
27 var jsTimestamp = inDev ? unixTimestamp : 0;
28 string currentUser = @GetString("DW_extranet_AccessUserName");
29 string userGroups = @GetString("DW_extranet_Groups");
30
31 var siteFirstPageId = GetString("DwAreaFirstPageID"); // for the Hags Logo url. Go to the WEBSITE home page
32 var thisSiteName = HagsWeb.Library.Methods.Page.HagsPages.GetSiteCountryName(@GetGlobalValue("Global:Area.LongLang"), @GetGlobalValue("Global:Area.Name"));
33 var websites = GetLoop("WebsiteLanguages");
34 string worldwideContactsLink = DWUtilities.GetPageByNavigationTag("worldwide-contacts", masterAreaId);
35
36
37
38 }
39 <!DOCTYPE html>
40 <html class="no-js" lang="@htmlLang">
41 <head>
42 <meta charset="utf-8">
43 <meta name="viewport" content="width=device-width, initial-scale=1.0">
44 <title>@GetValue("Title")</title>
45 @GetValue("MetaTags")
46 @GetValue("CopyRightNotice")
47
48
49 <meta name="author" content="HAGS @(siteAreaName)">
50 <link rel="icon" href="@(designBaseUrl)assets/img/favicon.ico" sizes="32x32">
51 <link rel="icon" href="@(designBaseUrl)assets/img/icon.svg" type="image/svg+xml">
52 <link rel="apple-touch-icon" href="@(designBaseUrl)assets/img/apple-touch-icon.png">
53
54 <script>(function (H) { H.className = H.className.replace(/\bno-js\b/, 'js') })(document.documentElement)</script>
55
56 <link rel="preconnect" href="https://cdn.fonts.net">
57 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/monotype-redux.css">
58
59 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/reset.css?v=1.1">
60 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/core.css?ts=@unixTimestamp">
61 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/nav-mega.css?ts=@unixTimestamp">
62 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/forms.css?ts=@unixTimestamp">
63 <link rel="stylesheet" href="@(designBaseUrl)assets/styles/country-rules.css?ts=@unixTimestamp">
64
65 @if (!inDev)
66 {
67 <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="89c7e0fa-fa61-446d-9c96-866489bcea3c" data-blockingmode="auto" type="text/javascript"></script>
68 }
69
70 @foreach (var language in GetLoop("Languages"))
71 {
72 string pageid = language.GetString("PageID");
73 string url = string.Empty;
74 string productId = System.Web.HttpContext.Current.Request.QueryString.Get("productid");
75 if (string.IsNullOrEmpty(productId))
76 {
77 url = @GetGlobalValue("Global:Request.Scheme") + "://" + language.GetString("PrimaryDomain");
78 url = url + Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl("default.aspx?id=" + pageid);
79 }
80 else
81 {
82 string productSystemUrl = "default.aspx?id=" + pageid + "&ProductID=" + productId;
83 string productUrl = Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(productSystemUrl);
84 if (!string.IsNullOrEmpty(productUrl))
85 {
86 url = @GetGlobalValue("Global:Request.Scheme") + "://" + language.GetString("PrimaryDomain") + productUrl;
87 }
88 }
89 if (!string.IsNullOrEmpty(url))
90 {
91 <link rel="alternate" href='@url' hreflang='@language.GetString("Culture")'>
92 }
93 }
94
95 @* expand these bundles for re-design debugging *@
96
97 @* Scripts.Render("~/bundle/jquery") *@
98 @* @Scripts.Render("~/bundle/Validation") *@
99
100
101
102 @* no need for this? we are not using bootstrap anymore!! /HagsCore/style/libraries/bootstrap-sass/assets/javascripts/bootstrap.min.js *@
103 @* /HagsCore/style/scss/libraries/bootstrap-sass/assets/javascripts/bootstrap.min.js *@
104
105 <script type="text/javascript" src="@(designBaseUrl)assets/js/libraries/jquery.min.js" cookieconsent="ignore"></script>
106 <script type="text/javascript" src="@(designBaseUrl)assets/js/libraries/validation/jquery.validate.min.js" cookieconsent="ignore"></script>
107 <script type="text/javascript" src="@(designBaseUrl)assets/js/libraries/validation/additional-methods.min.js" cookieconsent="ignore"></script>
108 <script type="text/javascript" src="@(designBaseUrl)assets/js/functions/hags-global.js?v=1.4.5&ts=@jsTimestamp" cookieconsent="ignore"></script>
109 @*<script type="text/javascript" src="@(designBaseUrl)assets/js/functions/hags-global.js" cookieconsent="ignore"></script>*@
110
111 @* the future!! HTMX is here *@
112 <script src="@(designBaseUrl)assets/js/libraries/htmx/htmx.min.js" cookieconsent="ignore"></script>
113
114 <script type="text/javascript" src="@(designBaseUrl)assets/js/functions/h24.js?v=1.4.5&ts=@unixTimestamp" cookieconsent="ignore"></script>
115
116
117 @* this snippet is from the product page template *@
118 @RenderSnippet("productScripts")
119
120 @* this snippet is from the case studies item listing *@
121 @RenderSnippet("caseStudyScripts")
122
123
124 @* do not use these for now *@
125 <!--IncludeFile("Includes/SharpSpringCode.cshtml")-->
126 <!--IncludeFile("Includes/TrailHub_DenmarkCode.cshtml")-->
127 <!-- Start of Sleeknote signup and lead generation tool - www.sleeknote.com -->
128 @if (!inDev)
129 {
130 <script id="sleeknoteScript" type="text/javascript">
131 (function () {
132 var sleeknoteScriptTag = document.createElement("script");
133 sleeknoteScriptTag.type = "text/javascript";
134 sleeknoteScriptTag.charset = "utf-8";
135 sleeknoteScriptTag.src = ("//sleeknotecustomerscripts.sleeknote.com/60385.js");
136 var s = document.getElementById("sleeknoteScript");
137 s.parentNode.insertBefore(sleeknoteScriptTag, s);
138 })();
139 </script>
140
141 }
142
143
144 @inherits Dynamicweb.Rendering.RazorTemplateBase<Dynamicweb.Rendering.RazorTemplateModel<Dynamicweb.Rendering.Template>>
145
146 @if (!inDev)
147 {
148 <meta name="facebook-domain-verification" content="8vnuupfwjjw7l4g2t44cuzv5c17fa2">
149 <meta name="p:domain_verify" content="e984d55d650d51a77b5bd78fce401aee">
150
151 string verificationCode = "";
152 switch (masterAreaId)
153 {
154 case 1:
155 <!-- Google Analytics Property for Global -->
156 <meta name="google-site-verification" content="SU7OrN2pJAoaHy4QUbJqKRyiRK_pJK_mydVX9HnbAjE">
157 break;
158 case 2:
159 <!-- Google Analytics Property for Sweden -->
160 <meta name="google-site-verification" content="WMHOYHSUksAhokWvc_pl1xi2eUEIqlSAmqSuPqBuIhw">
161 break;
162 case 3:
163 <!-- Google Analytics Property for Germany -->
164 <meta name="google-site-verification" content="2FnagwVri1SLEk0f1-cNAMIsqoelzEf6qa64iTOo6A4">
165 break;
166 case 4:
167 <!-- Google Analytics Property for Denmark -->
168 <meta name="google-site-verification" content="iTdN9SsW-DWo1nPaqZ2_W6c1lKr1KdpIE-9PIa7efD8">
169 break;
170 case 5:
171 <!-- Google Analytics Property for France -->
172 <meta name="google-site-verification" content="q7sWMD42DhdNcVgQjRvpUnHq6UWvgFfxxN7SWLTjDBs">
173 break;
174 case 6:
175 <!-- Google Analytics Property for Spain -->
176 <meta name="google-site-verification" content="5l8EU56ZLDtGLgFsyPizPWpK1lt_DAqhcYsgiP_wZ2w">
177 break;
178 case 7:
179 <!-- Google Analytics Property for UK -->
180 <meta name="google-site-verification" content="VWJFZapvDhxv8eu8eMl66KkAAArEyIG3pa8ZffeAKrg">
181 break;
182 }
183
184 <!-- Google Tag Manager -->
185 <script>
186 window.dataLayer = window.dataLayer || [];
187 </script>
188 <script type="text/javascript">
189 (function (w, d, s, l, i) {
190 w[l] = w[l] || [];
191 w[l].push({
192 'gtm.start':
193 new Date().getTime(),
194 event: 'gtm.js'
195 });
196 var f = d.getElementsByTagName(s)[0],
197 j = d.createElement(s),
198 dl = l != 'dataLayer' ? '&l=' + l : '';
199 j.async = true;
200 j.src =
201 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
202 f.parentNode.insertBefore(j, f);
203 })(window, document, 'script', 'dataLayer', 'GTM-MCRWZS');
204 </script>
205 <!-- End Google Tag Manager -->
206 <!-- Facebook Pixel Code -->
207 <script type="text/javascript">
208 !function (f, b, e, v, n, t, s) {
209 if (f.fbq) return;
210 n = f.fbq = function () {
211 n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
212 };
213 if (!f._fbq) f._fbq = n;
214 n.push = n;
215 n.loaded = !0;
216 n.version = '2.0';
217 n.queue = [];
218 t = b.createElement(e);
219 t.async = !0;
220 t.src = v;
221 s = b.getElementsByTagName(e)[0];
222 s.parentNode.insertBefore(t, s)
223 }(window,
224 document,
225 'script',
226 'https://connect.facebook.net/en_US/fbevents.js');
227 fbq('init', '271101660030700');
228 fbq('track', 'PageView');
229 </script>
230 <!-- End Facebook Pixel Code -->
231 }
232
233 <script type="text/javascript" src="https://cdn.weglot.com/weglot.min.js"></script>
234 <script>
235 Weglot.initialize({
236 api_key: 'wg_99b6e7269c4b828ebd027c6d488b55500'
237 });
238 </script>
239
240 @GetValue("Stylesheets")
241 @GetValue("Javascripts")
242 </head>
243
244 <body>
245 @if (!inDev)
246 {
247 <noscript>
248 <!-- Google Tag Manager (noscript) -->
249 <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MCRWZS" height="0" width="0" style="display:none;visibility:hidden"></iframe>
250 <!-- End Google Tag Manager (noscript) -->
251 <!-- Facebook Pixel Code -->
252 <img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=271101660030700&ev=PageView&noscript=1">
253 </noscript>
254 }
255 @* Snippets are rendered last and can be defined in any template *@
256 @* We are using a snippet (headerClass) here to let a page template define if the header sits on top or is part of the
257 @* document flow. Setting the snippet to an empty string below makes sure it gets rendered as empty and not as a DW comment string *@
258 @* if a snippetStart/End command is used in another template it is appended to the snippet *@
259
260 @SnippetStart("headerClass")@("")@SnippetEnd("headerClass")
261
262 <header class="header" data-variant='@RenderSnippet("headerClass")'>
263
264 <div class="header__wrapper">
265
266 <div class="header__global-nav">
267
268 <div class="header-logo" itemscope="" itemtype="http://schema.org/Organization">
269 <a href="Default.aspx?ID=@siteFirstPageId" itemprop="url">
270 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 362 81" class="hags-logo"><path fill="currentColor" fill-rule="evenodd" d="M311.22.5c9.399 0 16.725 3.168 18.555 3.168.862 0 1.596-.243 2.697-1.338h2.558l2.318 19.692h-4.876c-2.697-9.846-10.513-16.292-19.911-16.292-6.837 0-11.97 3.65-11.97 8.39 0 11.187 20.279 13.258 33.958 26.873 5.004 4.986 6.951 10.214 6.951 16.05 0 12.648-11.47 22.618-26.006 22.618-9.77 0-18.687-3.888-20.887-3.888-1.1 0-1.952.611-2.562 1.947h-3.178L285.82 55.59v-.002h4.757c4.029 12.031 11.236 18.237 20.88 18.237 8.059 0 14.17-5.11 14.17-11.917 0-18.122-39.204-17.509-39.204-41.586C286.423 8.645 296.681.5 311.22.5Zm-75.498 0c7.426 0 13.874 1.484 18.765 2.7l.801.2c3.013.755 5.377 1.361 6.941 1.361 1.825 0 2.814-.492 3.66-1.586h3.055v22.253h-4.89c-3.29-12.4-12.575-19.7-25.28-19.7-17.337 0-29.31 13.622-29.31 33.318 0 19.946 12.584 34.778 29.56 34.778 4.638 0 9.77-1.215 13.068-3.157V53.883c0-6.078-2.561-7.419-15.022-7.662v-4.617h40.55v4.617h-.001c-6.474.124-8.675 2.068-8.675 7.662v18.12c-8.795 4.011-21.364 7.656-31.877 7.656-30.898 0-45.805-17.146-45.805-40.488C191.264 16.916 209.71.5 235.722.5ZM39.705 2.33v4.74h-1.712c-6.351 0-9.526 2.066-9.526 8.878v19.086h40.301V16.31c0-6.808-2.685-9.24-9.77-9.24h-1.1V2.33h39.083v4.74h-2.203c-6.223 0-9.156 2.308-9.156 8.878v48.153c0 6.318 2.322 9.116 9.403 9.116h1.956v4.74H57.899v-4.742h1.708c6.476 0 9.161-2.796 9.161-9.364V42.21h-40.3V64.1c0 6.445 2.565 9.117 9.4 9.117h1.837v4.74H.5v-4.742h2.073c6.235 0 9.04-2.796 9.04-8.873V15.948c0-6.08-2.685-8.878-9.156-8.878H.5V2.33h39.205ZM154.04.5l24.433 61.772c3.175 8.026 5.857 10.452 12.208 10.943v4.741h-39.693v-4.741h4.271c7.451 0 8.551-3.282 6.11-9.238l-5.741-14.107h-26.752l.005.003-5.125 14.226c-2.2 6.2-2.07 9.116 9.65 9.116h1.586v4.741h-32.37v-4.741h1.837c5.858 0 8.912-2.67 11.966-11.182L137.313 4.03 135.967.5h18.073ZM141.59 14.733l-10.26 28.448h21.492L141.59 14.733ZM352.674 2.62c1.114 0 2.164.213 3.148.64a8.412 8.412 0 0 1 2.58 1.726 8.042 8.042 0 0 1 1.743 2.562c.427.984.64 2.034.64 3.148a7.702 7.702 0 0 1-.64 3.131 8.097 8.097 0 0 1-1.743 2.544 8.158 8.158 0 0 1-2.58 1.708 8.02 8.02 0 0 1-3.148.623 8.02 8.02 0 0 1-3.15-.623 8.158 8.158 0 0 1-2.579-1.708 8.097 8.097 0 0 1-1.743-2.544 7.702 7.702 0 0 1-.64-3.13c0-1.115.213-2.165.64-3.15a8.042 8.042 0 0 1 1.743-2.561 8.412 8.412 0 0 1 2.58-1.726 7.827 7.827 0 0 1 3.149-.64Zm0 1.245c-.95 0-1.839.178-2.669.534a6.854 6.854 0 0 0-2.17 1.459 6.854 6.854 0 0 0-1.459 2.17 6.702 6.702 0 0 0-.533 2.668c0 .925.177 1.803.533 2.633a7.07 7.07 0 0 0 1.459 2.188 6.71 6.71 0 0 0 2.17 1.477c.83.356 1.72.534 2.669.534.948 0 1.838-.178 2.668-.534a6.71 6.71 0 0 0 2.17-1.477 7.07 7.07 0 0 0 1.46-2.188c.355-.83.533-1.708.533-2.633 0-.948-.178-1.838-.534-2.668a6.854 6.854 0 0 0-1.459-2.17 6.854 6.854 0 0 0-2.17-1.46 6.702 6.702 0 0 0-2.668-.533Zm.035 2.242.318.009c.316.017.625.062.928.133a3.3 3.3 0 0 1 1.085.463c.32.213.575.486.765.818.19.332.284.747.284 1.245 0 .664-.19 1.204-.569 1.619-.38.415-.89.694-1.53.836l2.455 3.985h-1.992l-2.135-3.807h-1.174v3.807h-1.637V6.107h3.202Zm-.07 1.387h-1.495v2.598h1.316a3.48 3.48 0 0 0 1.352-.267c.427-.178.64-.54.64-1.085 0-.499-.195-.83-.586-.997-.392-.166-.801-.249-1.228-.249Z"></path></svg>
271 </a>
272 </div>
273
274
275 <div class="header__actions" data-username="@currentUser">
276
277 <ul role="list" class="actions-list">
278
279 <li class="actions-list__item">
280 <button class="header__action-btn js-action-btn" data-target="search-panel">
281 <span class="visually-hidden">Search</span>
282 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="actions-list__icon"><path fill="currentColor" fill-rule="nonzero" d="M57.43 124.386a69.002 69.002 0 0 0 41.078 19.062l1.126 65.068 16.64-.293-1.126-65.068c32.015-4.457 56.718-30.428 59.57-62.625 2.85-32.197-16.906-62.091-47.641-72.086-30.735-9.994-64.306 2.559-80.952 30.27-16.646 27.71-11.958 63.24 11.305 85.672Zm84.54-87.151c20.857 20.141 21.437 53.377 1.295 74.235-20.141 20.857-53.377 21.437-74.235 1.295-20.857-20.141-21.437-53.377-1.295-74.235 20.141-20.857 53.377-21.437 74.235-1.295Z"></path></svg>
283 </button>
284 </li>
285
286 <li class="actions-list__item">
287 <button class="header__action-btn js-action-btn" data-target="country-select-panel">
288 <span class="visually-hidden">Choose Location</span>
289 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="actions-list__icon"><g fill="currentColor" fill-rule="nonzero"><path d="M106 3C64.446 3 32 34.472 32 74.528c0 8.87 3.415 26.608 9.108 39.483 18.5 42.63 58.915 90.983 60.623 92.986 1.138 1.43 2.561 2.003 4.269 2.003 1.708 0 3.13-.858 4.27-2.003 1.707-2.003 42.122-50.355 60.622-92.986C176.585 101.136 180 83.397 180 74.528 180 34.472 147.554 3 106 3Zm54.362 106.433C146.13 142.336 117.1 180.39 106 194.123c-11.1-13.734-40.13-51.787-54.362-84.69-5.123-11.158-8.253-27.18-8.253-34.905 0-33.761 27.607-60.084 62.615-60.084s62.615 26.323 62.615 60.084c0 7.725-3.13 23.747-8.253 34.905Z"></path><path d="M106 37.333c-21.915 0-39.846 18.025-39.846 40.056 0 22.03 17.93 40.055 39.846 40.055 21.915 0 39.846-18.025 39.846-40.055S127.916 37.333 106 37.333ZM106 106c-15.654 0-28.462-12.875-28.462-28.611S90.346 48.778 106 48.778s28.462 12.875 28.462 28.61C134.462 93.126 121.654 106 106 106Z"></path></g></svg>
290 </button>
291 </li>
292
293 <li class="actions-list__item">
294 <button class="header__action-btn js-action-btn" data-target="collection-panel">
295 <span class="visually-hidden">Product Collections</span>
296 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="actions-list__icon"><path fill="currentColor" fill-rule="nonzero" d="M183.337 75.733c-.856-10.588-9.716-18.735-20.325-18.67h-20.475V39.663A36.668 36.668 0 0 0 124.24 7.914a36.552 36.552 0 0 0-36.611 0 36.667 36.667 0 0 0-18.297 31.748v17.402H48.857c-10.6-.047-19.45 8.09-20.307 18.669l-9.474 111.102a20.462 20.462 0 0 0 5.277 15.557A20.368 20.368 0 0 0 39.373 209h133.244a20.369 20.369 0 0 0 15.02-6.608 20.433 20.433 0 0 0 5.287-15.557l-9.587-111.102Zm-101.6-35.968c0-13.385 10.832-24.234 24.196-24.234 13.363 0 24.196 10.85 24.196 24.234v17.402H81.736V39.765Zm96.788 154.231a7.923 7.923 0 0 1-5.882 2.48H39.253a7.94 7.94 0 0 1-5.883-2.582 7.994 7.994 0 0 1-2.066-6.087l9.577-111.102h.009a7.948 7.948 0 0 1 7.966-7.215H69.36v15.78l-.01.01a6.209 6.209 0 0 0 6.208 6.208 6.209 6.209 0 0 0 6.208-6.208V69.49h48.393v15.79a6.2 6.2 0 0 0 6.198 6.208 6.203 6.203 0 0 0 6.208-6.208V69.49h20.446a7.958 7.958 0 0 1 7.948 7.308l9.576 111.103a7.935 7.935 0 0 1-2.038 6.095h.029Z"></path></svg>
297 </button>
298 </li>
299
300 <li class="actions-list__item">
301 <button class="header__action-btn js-action-btn" data-target="hags-connect-panel">
302 <span class="visually-hidden">HAGS Connect</span>
303 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="actions-list__icon"><path fill="currentColor" fill-rule="evenodd" d="M149.316 21.1C137.27 9.035 122.73 3 105.693 3 88.657 3 74.116 9.034 62.069 21.1 50.023 33.169 44 47.735 44 64.8c0 21.725 8.676 38.55 26.026 50.477l-12.248 85.885c-.267 1.877.167 3.574 1.302 5.091 1.136 1.517 2.641 2.41 4.515 2.678a7.13 7.13 0 0 0 .97.069h82.256c1.893 0 3.508-.67 4.847-2.011 1.339-1.341 2.008-2.96 2.008-4.856a6.78 6.78 0 0 0-.069-.97l-12.248-85.886c17.351-11.926 26.026-28.752 26.026-50.477 0-17.066-6.023-31.632-18.069-43.7Zm-10.398 174.167-11.753-82.409a6.73 6.73 0 0 1 .595-3.916 6.713 6.713 0 0 1 2.654-2.936c15.508-9.36 23.262-23.094 23.262-41.206 0-13.273-4.685-24.603-14.054-33.988-9.37-9.386-20.68-14.079-33.93-14.079s-24.56 4.693-33.928 14.079c-9.37 9.385-14.055 20.715-14.055 33.988 0 18.112 7.755 31.847 23.263 41.206a6.713 6.713 0 0 1 2.654 2.936 6.73 6.73 0 0 1 .594 3.916l-11.752 82.409h66.45Z"></path></svg>
304 </button>
305 </li>
306
307 <li class="actions-list__item" id="menu-panel-icon">
308 <button class="header__action-btn js-action-btn" data-target="nav-panel">
309 <span class="visually-hidden">Menu</span>
310 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="actions-list__icon"><path d="M166.435 62H45.558C41.386 62 38 57.294 38 51.495S41.386 41 45.558 41h120.884c4.18 0 7.558 4.706 7.558 10.505-.007 5.799-3.386 10.495-7.565 10.495ZM173 106.5c0-5.796-3.379-10.5-7.558-10.5H44.558C40.386 96 37 100.704 37 106.5s3.386 10.5 7.558 10.5h120.891c4.172 0 7.551-4.704 7.551-10.5Zm0 54c0-5.806-3.379-10.5-7.558-10.5H44.558C40.386 150 37 154.694 37 160.5s3.386 10.5 7.558 10.5h120.891c4.172 0 7.551-4.694 7.551-10.5Z" fill="currentColor" fill-rule="nonzero"></path></svg>
311 </button>
312 </li>
313
314 </ul>
315
316 @helper renderSearch(Dynamicweb.Content.Area masterArea)
317 {
318
319 string searchPageUrl = Dynamicweb.Frontend.SearchEngineFriendlyURLs.GetFriendlyUrl(GetInteger("DwAreaSearchPageID"));
320 string langCode = @GetGlobalValue("Global:Area.LongLang");
321 string searchId = @GetString("DwAreaSearchPageID");
322 string searchTranslate = Translate("Search", "Search");
323 string testHtmx = System.Web.HttpContext.Current.Request["htmx"];
324 string weglotLang = System.Web.HttpContext.Current.Request.Headers["weglot-language"];
325 string urlLang = weglotLang != "" ? "/" + weglotLang : "";
326 //ignore the default en code
327 urlLang = weglotLang == "en" ? "" : urlLang;
328
329 <form id="search-box" name="searchBox" action="Default.aspx" method="get">
330 <div class="form-group flow-s">
331 <input type="hidden" name="ID" value="@searchId">
332 <input type="hidden" id="search-advanced-culture" value="@langCode">
333 <input type="hidden" id="search-advanced-resultsurl" value="@searchPageUrl">
334 <input type="hidden" id="Searchtype" value="">
335 <input type="hidden" id="search-advanced-pageAreaId" value="@(masterArea.ID)">
336 <input type="hidden" id="search-advanced-pagelanguage" name="areaLanguage" value="LANG1">
337
338
339 <label for="InputSearch"><h5>@(searchTranslate)</h5></label>
340
341 <!--input type="search" name="q" class="form-control" id="InputSearch" maxlength="45" placeholder="@(searchTranslate) HAGS" onkeyup="return forceLower(this);" autocomplete="off" /-->
342 @if ( true ) {
343 <p data-weglot="@weglotLang">
344 <input type="search" id="InputSearch" name="q" placeholder="@(searchTranslate) HAGS" hx-get="@(urlLang)/snippets/suggestions?areaLanguage=LANG1" hx-params="q" hx-trigger="input[this.value.length > 3] changed delay:300ms, input[this.value.length == 0] " hx-target="#search-suggest">
345 </p>
346 }
347
348 <button>@Translate("Go", "Go")</button>
349 </div>
350 </form>
351
352 <div class="header__action-area">
353 <ul class="flow-xs" role="list" id="search-suggest"></ul>
354 </div>
355 }
356
357 <div class="header__action-panel" id="search-panel">
358 <button class="header__action-btn header__action-btn--close js-panel-close">
359 <span class="visually-hidden">Close</span>
360 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
361 </button>
362 <div class="header__action-copy flow-s">
363 @renderSearch(masterArea)
364 </div>
365 </div>
366
367
368 @*if ( currentUser == "Kevin Lees" || currentUser == "Ian Mckay" )*@
369 @if ( true )
370 {
371 <div class="header__action-panel" id="hags-connect-panel">
372
373 <button class="header__action-btn header__action-btn--close js-panel-close">
374 <span class="visually-hidden">Close</span>
375 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
376 </button>
377 @{
378 string thisPageID = @GetGlobalValue("Global:Page.ID");
379 string hagsConnectTitle = @Translate("HAGS Connect", "HAGS Connect");
380 }
381
382 <div class="header__action-copy flow-s">
383
384 <h5>@hagsConnectTitle</h5>
385
386 <p>@Translate("HAGSConnectIntro", "A brief block of introductory copy about HAGS Connect.")</p>
387
388 @if (!String.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.UserName")))
389 {
390
391 <p>
392 <strong>@Translate("Welcome", "Welcome"), @GetGlobalValue("Global:Extranet.FirstName")</strong>
393 </p>
394
395 @RenderNavigation(new{
396 ParentTag = "MyHags",
397 Template = "simple-nav.xslt"
398 })
399
400 <ul role="list" class="icon-list">
401 <li>
402 <a href="/admin/Public/ExtranetLogOff.aspx?ID=@thisPageID">
403 <img src="@(designBaseUrl)assets/svg-icons/connect/logout-icon-2.svg">
404 <span>@Translate("SignOut", "Sign Out")</span>
405 </a>
406 </li>
407 </ul>
408
409
410
411 }
412 else
413 {
414 if (Dynamicweb.Configuration.SystemConfiguration.Instance.GetBoolean("/Globalsettings/System/MyHags/SSOLoginActive"))
415 {
416 <a href="/Admin/Public/Social/ExternalLogin.aspx?action=login&providerID=3">HAGS Connect Login</a>
417 }
418 }
419
420 </div>
421 </div>
422 }
423
424
425 @helper renderCountryList(string outputElement = "list")
426 {
427 // create a list of 'anonymous' objects to hold the weglot sites - move to site config at some point
428 var allCountries = new List<object>
429 {
430 new { Url = "https://hagsdev.hags.com", Image = "globe.svg", Title = "Global", Active = true },
431 new { Url = "be-nl", Image = "be.svg", Title = "Belgium (Flemish)", Active = true },
432 new { Url = "be-fr", Image = "be.svg", Title = "Belgium (French)", Active = true },
433 new { Url = "zh", Image = "cn.svg", Title = "China", Active = true },
434 new { Url = "hr", Image = "hr.svg", Title = "Croatia", Active = true },
435 new { Url = "https://hags.dk/", Image = "dk.svg", Title = "Denmark", Active = true },
436 new { Url = "et", Image = "ee.svg", Title = "Estonia", Active = true },
437 new { Url = "fi", Image = "fi.svg", Title = "Finland", Active = true },
438 new { Url = "fr", Image = "fr.svg", Title = "France", Active = true },
439 new { Url = "de", Image = "de.svg", Title = "Germany", Active = true },
440 new { Url = "hu", Image = "hu.svg", Title = "Hungary", Active = true },
441 new { Url = "it", Image = "it.svg", Title = "Italy", Active = true},
442 new { Url = "ja", Image = "jp.svg", Title = "Japan", Active = true},
443 new { Url = "lv", Image = "lv.svg", Title = "Latvia", Active = true},
444 new { Url = "nl", Image = "nl.svg", Title = "Netherlands", Active = true },
445 new { Url = "no", Image = "no.svg", Title = "Norway", Active = true },
446 new { Url = "pl", Image = "pl.svg", Title = "Poland", Active = true },
447 new { Url = "sa", Image = "rs.svg", Title = "Serbia", Active = true },
448 new { Url = "ko", Image = "kr.svg", Title = "South Korea", Active = true },
449 new { Url = "es", Image = "es.svg", Title = "Spain", Active = true },
450 new { Url = "https://hags.se/", Image = "se.svg", Title = "Sweden", Active = true },
451 new { Url = "ch-de", Image = "ch.svg", Title = "Switzerland (German)", Active = true },
452 new { Url = "tr", Image = "tr.svg", Title = "Turkey", Active = true},
453 new { Url = "https://hags.co.uk/", Image = "gb.svg", Title = "United Kingdom", Active = true }
454 };
455
456 // sort the list - the getType etc.. is because it's anonymous
457 //var sortedList = allCountries.OrderBy(item => item.GetType().GetProperty("Title").GetValue(item)).ToList();
458 var sortedList = allCountries;
459
460 if ( outputElement == "list" )
461 {
462
463 <ul class="icon-list" role="list">
464 @foreach (var thisCountry in sortedList)
465 {
466 var thisActive = thisCountry.GetType().GetProperty("Active").GetValue(thisCountry);
467 var thisImage = thisCountry.GetType().GetProperty("Image").GetValue(thisCountry);
468 var thisTitle = thisCountry.GetType().GetProperty("Title").GetValue(thisCountry);
469 var thisUrl = thisCountry.GetType().GetProperty("Url").GetValue(thisCountry);
470 bool isActive = Convert.ToBoolean(thisActive);
471
472 if (isActive)
473 {
474 if ( thisTitle == "Global" ) {
475 <li>
476 <a href="@thisUrl" data-wg-notranslate="">
477 <img src="/Files/Templates/Designs/Hags2024/icons/flags/@thisImage" alt="@thisTitle">
478 <span data-wg-translate="">@thisTitle</span>
479 </a>
480 </li>
481 }
482 else
483 {
484 <li>
485 <a href="@thisUrl">
486 <img src="/Files/Templates/Designs/Hags2024/icons/flags/@thisImage" alt="@thisTitle">
487 <span>@thisTitle</span>
488 </a>
489 </li>
490 }
491
492 }
493 }
494 </ul>
495 }
496 }
497
498
499
500
501 <div class="header__action-panel" id="country-select-panel">
502
503 <button class="header__action-btn header__action-btn--close js-panel-close">
504 <span class="visually-hidden">Close</span>
505 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
506 </button>
507 <div class="header__action-copy flow-s">
508 <h5>@Translate("SelectYourLocation", "Select your location")</h5>
509 <div class="header__action-area">
510 @renderCountryList("list")
511 </div>
512 </div>
513 </div>
514
515
516
517 @using System;
518 @using System.Collections.Generic;
519 @using System.Linq;
520 @using Dynamicweb.Ecommerce.Variants;
521 @using HagsWeb.Library.BusinessObjects.UsersLists;
522 @using HagsWeb.Library.Methods.AssetManager;
523 @using HagsWeb.Library.Methods.ProductProperties;
524 @using HagsWeb.Library.State;
525
526
527 @helper renderMyCollectionPanel()
528 {
529
530 Dynamicweb.Frontend.PageView collectionPage = Dynamicweb.Frontend.PageView.Current() ?? Dynamicweb.Frontend.PageView.Current();
531 Dynamicweb.Content.Area collectionArea = new Dynamicweb.Content.AreaService().GetArea(collectionPage.AreaID);
532
533 List<ProductCollectionItem> productCollectionItems = SessionManager.UsersMyProductCollection != null ? SessionManager.UsersMyProductCollection : new List<ProductCollectionItem>();
534
535 bool isQuote = Convert.ToBoolean(collectionArea.Item["QuoteAndOrderChk"]);
536 bool isCatalog = true; // Always available;
537 string downloadingText = HagsWeb.Library.Utilities.DWUtilities.GetTranslation("Downloading...", "Downloading...", collectionArea.Culture);
538 int currentPage = collectionArea.ID;
539 string currentCollection = Dynamicweb.Context.Current.Request.QueryString.Get("collection");
540 bool isLoggedIn = String.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.UserName")) ? false : true;
541 string designBaseUrl = GetString("Template:DesignBaseUrl");
542
543 List<ProductAsset> imageFileList = new List<ProductAsset>();
544 List<ProductAsset> dwgFileList = new List<ProductAsset>();
545 List<ProductAsset> instructionsFileList = new List<ProductAsset>();
546 string contactUsLink = HagsWeb.Library.Utilities.DWUtilities.GetPageByNavigationTag("ContactUs", currentPage); // /kontakta-oss?mode=quote#contactForms // /kontakta-oss?success=True&mode=quote#contactForms // restful url
547
548 string printShout = Translate("SaveOrPrint", "Save or Print your Product PDF ");
549 string altCopy = @Translate("RemoveFromCollection", "Remove from my collection");
550 string removeCopy = @Translate("RemoveFromCollection", "Remove from my collection");
551
552 <div class="collection flow">
553
554 <input type="hidden" id="isQuote" value="@isQuote">
555 <input type="hidden" id="downloadingText" value="@downloadingText">
556 <input type="hidden" id="collectionCount" value="@productCollectionItems.Count">
557
558 <div id="instns_MyProductCollection" class="flow-xs">
559 @if (productCollectionItems.Any() || !string.IsNullOrEmpty(currentCollection))
560 {
561 <p>@Translate("ProductCollectionButtonInstructionsNew", "Go to <strong>My Collection</strong> to download files, create quotes or print a product catalogue.")</p>
562 <a class="btn btn--outline" href="/my-collection">@Translate("MyCollection", "My Collection")</a>
563 }
564 else
565 {
566 <p>@Translate("product-collection-instructions-copy-new", "To add a product simply click on <strong>Add to my collection</strong> on any product page. Once you have added products to a collection you will be able to print a product catalogue, download installation guides, images and DWG files or request a quote.")</p>
567
568 }
569 </div>
570
571 <div class="collection__ui">
572
573 <div class="main-panel">
574
575 <div class="panel-listing" id="prods_MyProductCollection">
576
577 @if (productCollectionItems.Any())
578 {
579 foreach (ProductCollectionItem item in productCollectionItems)
580 {
581 <div class="product-card collection__item">
582
583 <div class="product-card__actions in-collection">
584
585 <button type="button" class="action-btn" data-removeproductlist="@(item.ProductNumber)">
586 <span class="visually-hidden">@removeCopy</span>
587 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 212 212" class="h24-icon h24-icon--minus"><path fill="currentColor" fill-rule="evenodd" d="M106 6c55.193 0 100 44.807 100 100s-44.807 100-100 100S6 161.193 6 106 50.807 6 106 6Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C21.936 56.207 11.333 79.875 11.333 106c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C155.793 21.936 132.125 11.333 106 11.333Zm28.772 87.504a6.5 6.5 0 0 1 6.5 6.5v1a6.5 6.5 0 0 1-6.5 6.5h-57a6.5 6.5 0 0 1-6.5-6.5v-1a6.5 6.5 0 0 1 6.5-6.5h57Z"></path></svg>
588 </button>
589
590 </div>
591
592 <div class="product-card__img-silo">
593
594 @if (item.ProductImageUrl != null && !String.IsNullOrEmpty(item.ProductUrlReference))
595 {
596 <a href="@item.ProductUrlReference">
597 <img src="@item.ProductImageUrl">
598 </a>
599 }
600 else
601 {
602 <a href="@item.ProductUrlReference" class="product-card__missing">
603 <img src="@(designBaseUrl)assets/img/h24-see-saw.svg">
604 <span>No Image Available</span>
605 </a>
606 }
607
608 </div>
609
610 <div class="product-card__copy">
611
612 <p class="product-card__heading">
613 <a href="@item.ProductUrlReference">@(item.ProductName)</a>
614 </p>
615
616 <p>@item.ProductNumber</p>
617
618 @if (!string.IsNullOrEmpty(item.ProductVariantId))
619 {
620 Tuple<string, string, string, string, string, string, List<VariantOption>> optionsTuple = ProductFieldValues.GetProductOptions(item.ProductVariantId, collectionArea.EcomLanguageId);
621
622 //optionsTuple.Item1; "Red"
623 //optionsTuple.Item2; "Above Ground"
624 //optionsTuple.Item3; "Wooden Post"
625 //optionsTuple.Item4; "Wooden Post / HPL Panels"
626 //optionsTuple.Item5; "A310.png"
627 //optionsTuple.Item6; "A310-diagram.png"
628 //optionsTuple.Item7; List<VariantOption> Not used here
629
630 }
631
632 </div>
633
634 </div>
635 }
636 }
637
638 </div>
639
640 </div>
641
642 </div> <!-- collection__iu end -->
643
644 <div class="cluster">
645 @if (productCollectionItems.Any())
646 {
647 foreach (var item in productCollectionItems)
648 {
649 foreach (ProductAsset asset in item.AssetDownloads.Where(n => n.Index == HagsWeb.Library.Methods.AssetManager.AssetTypeEnum.ToFriendlyAssetName(HagsWeb.Library.Methods.AssetManager.AssetType.Images) && n.FileName == item.ProductNumber + ".jpg" || n.FileName == item.ProductNumber + "_Side.jpg" || n.FileName == item.ProductNumber + "_Top.jpg").ToList())
650 {
651 imageFileList.Add(asset);
652 }
653
654 foreach (ProductAsset asset in item.AssetDownloads.Where(n => n.Index == HagsWeb.Library.Methods.AssetManager.AssetTypeEnum.ToFriendlyAssetName(HagsWeb.Library.Methods.AssetManager.AssetType.Drawings)).ToList())
655 {
656 dwgFileList.Add(asset);
657 }
658
659 foreach (ProductAsset asset in item.AssetDownloads.Where(n => n.Index == HagsWeb.Library.Methods.AssetManager.AssetTypeEnum.ToFriendlyAssetName(HagsWeb.Library.Methods.AssetManager.AssetType.AssemblyInstructions)).ToList())
660 {
661 instructionsFileList.Add(asset);
662 }
663 }
664
665 <button class="btn btn--warn" type="button" data-removeproductlist="All">@Translate("RemoveAll", "Remove All")</button>
666 }
667
668 </div>
669
670 @if (isLoggedIn && productCollectionItems.Any())
671 {
672 <div id="panelcollectiondetails" class="flow-xs">
673 <h5><strong>@Translate("Save collection?", "Save collection?")</strong></h5>
674 <p>@Translate("You are logged in", "You are currently logged in to HAGS Connect so you can save this collection to your account.")</p>
675 <button class="btn btn--outline" role="button" data-open-modal="#saveCollection">@Translate("Save collection", "Save this Collection")</button>
676 </div>
677 }
678 else
679 {
680 if (!isLoggedIn && productCollectionItems.Any())
681 {
682 <div id="panelcollectiondetails" class="flow-xs">
683 <h5><strong>@Translate("Save collection?", "Save collection?")</strong></h5>
684 <p>@Translate("To save login", "To save this collection into your HAGS Connect simply login using the button below.")</p>
685 <a class="btn btn--outline" href="/Admin/Public/Social/ExternalLogin.aspx?action=login&providerID=3">HAGS Connect Login</a>
686 </div>
687 }
688 }
689
690 </div> <!-- collection end -->
691 }
692
693
694
695
696
697
698
699
700
701
702
703
704
705 <div class="header__action-panel" id="collection-panel">
706
707 <button class="header__action-btn header__action-btn--close js-panel-close">
708 <span class="visually-hidden">Close</span>
709 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
710 </button>
711
712 <div class="header__action-copy flow-s">
713
714 <h5>@Translate("MyProductCollection", "My Product Collection")</h5>
715
716 <div class="header__action-area" id="" hx-get="snippets/my-collection-panel" hx-trigger="collectionChange from:document">
717
718 @renderMyCollectionPanel()
719
720 </div>
721
722 </div>
723
724 </div>
725
726
727 <div class="header__action-panel" id="search-panel">
728 <button class="header__action-btn header__action-btn--close js-panel-close">
729 <span class="visually-hidden">Close</span>
730 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
731 </button>
732 <div class="header__action-copy flow-s">
733 @renderSearch(masterArea)
734 </div>
735 </div>
736
737 <div class="header__action-panel" id="nav-panel">
738 <button class="header__action-btn header__action-btn--close js-panel-close">
739 <span class="visually-hidden">Close</span>
740 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
741 </button>
742 <div class="header__action-area">
743 @RenderSnippet("navigation")
744 </div>
745 </div>
746
747 </div>
748
749 </div>
750
751
752 <div class="header__local-nav">
753
754 @SnippetStart("navigation")
755 <nav class="nav">
756 <!--button id="menu-toggle" class="menu-toggle menu-toggle--main" aria-expanded="false" aria-controls="main-nav">
757 <div class="menu-toggle__box">
758 <div class="menu-toggle__lines"></div>
759 </div>
760 <span class="visually-hidden">Menu</span>
761 </button-->
762 @GetValue("DwNavigation(mainnav)")
763 </nav>
764 @SnippetEnd("navigation")
765
766 @RenderSnippet("navigation")
767
768 @* This snippet generates the product listing links on levels 4 and 5 of the site *@
769 @* In a snippet because these xslt built fuckers are only processed on PAGE templates not paragraph templates *@
770 @* The snippet is then included in the relevant PARAGRAPH template *@
771
772 @SnippetStart("nextLevelNav")
773 <section>
774 <div class="wrapper">
775 @GetValue("DwNavigation(productlistingnav)")
776 </div>
777 </section>
778 @SnippetEnd("nextLevelNav")
779
780 </div></div></header>
781 @inherits Dynamicweb.Rendering.RazorTemplateBase<Dynamicweb.Rendering.RazorTemplateModel<Dynamicweb.Rendering.Template>>
782
783
784
785 <main class="flow-page" id="content">@GetValue("DwContent(content)")</main>
786 @if (GetLoop("Item.Area.Accreditation_Images").Count() > 0)
787 {
788 <section class="creds">
789 <div class="wrapper">
790 <ul class="creds__list" role="list">
791 <!-- Accreditation Carousel items -->
792 @foreach (var item in @GetLoop("Item.Area.Accreditation_Images"))
793 {
794 var imageUrl = item.GetString("Item.Area.Accreditation_Images.Image");
795 var imageAlt = item.GetString("Item.Area.Accreditation_Images.Alternative_Text");
796 string imageLink = item.GetString("Item.Area.Accreditation_Images.Link");
797 var imageTitle = item.GetString("Item.Area.Accreditation_Images.Title");
798
799 if (!string.IsNullOrWhiteSpace(imageLink))
800 {
801 <li class="creds__item">
802 <a href="@imageLink">
803 <img class="creds__img" src="@imageUrl" alt="@imageAlt">
804 </a>
805 </li>
806 }
807 else
808 {
809 <li class="creds__item">
810 <img class="creds__img" src="@imageUrl" alt="@imageAlt" class="img-responsive">
811 </li>
812 }
813
814 }
815 </ul>
816 </div>
817 </section>
818 }
819
820 <footer class="footer">
821 <div class="inner-wrapper">
822
823 <div class="footer__logo" itemscope="" itemtype="http://schema.org/Organization">
824 <a href="Default.aspx?ID=@siteFirstPageId" itemprop="url">
825 <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 362 81" class="hags-logo"><path fill="currentColor" fill-rule="evenodd" d="M311.22.5c9.399 0 16.725 3.168 18.555 3.168.862 0 1.596-.243 2.697-1.338h2.558l2.318 19.692h-4.876c-2.697-9.846-10.513-16.292-19.911-16.292-6.837 0-11.97 3.65-11.97 8.39 0 11.187 20.279 13.258 33.958 26.873 5.004 4.986 6.951 10.214 6.951 16.05 0 12.648-11.47 22.618-26.006 22.618-9.77 0-18.687-3.888-20.887-3.888-1.1 0-1.952.611-2.562 1.947h-3.178L285.82 55.59v-.002h4.757c4.029 12.031 11.236 18.237 20.88 18.237 8.059 0 14.17-5.11 14.17-11.917 0-18.122-39.204-17.509-39.204-41.586C286.423 8.645 296.681.5 311.22.5Zm-75.498 0c7.426 0 13.874 1.484 18.765 2.7l.801.2c3.013.755 5.377 1.361 6.941 1.361 1.825 0 2.814-.492 3.66-1.586h3.055v22.253h-4.89c-3.29-12.4-12.575-19.7-25.28-19.7-17.337 0-29.31 13.622-29.31 33.318 0 19.946 12.584 34.778 29.56 34.778 4.638 0 9.77-1.215 13.068-3.157V53.883c0-6.078-2.561-7.419-15.022-7.662v-4.617h40.55v4.617h-.001c-6.474.124-8.675 2.068-8.675 7.662v18.12c-8.795 4.011-21.364 7.656-31.877 7.656-30.898 0-45.805-17.146-45.805-40.488C191.264 16.916 209.71.5 235.722.5ZM39.705 2.33v4.74h-1.712c-6.351 0-9.526 2.066-9.526 8.878v19.086h40.301V16.31c0-6.808-2.685-9.24-9.77-9.24h-1.1V2.33h39.083v4.74h-2.203c-6.223 0-9.156 2.308-9.156 8.878v48.153c0 6.318 2.322 9.116 9.403 9.116h1.956v4.74H57.899v-4.742h1.708c6.476 0 9.161-2.796 9.161-9.364V42.21h-40.3V64.1c0 6.445 2.565 9.117 9.4 9.117h1.837v4.74H.5v-4.742h2.073c6.235 0 9.04-2.796 9.04-8.873V15.948c0-6.08-2.685-8.878-9.156-8.878H.5V2.33h39.205ZM154.04.5l24.433 61.772c3.175 8.026 5.857 10.452 12.208 10.943v4.741h-39.693v-4.741h4.271c7.451 0 8.551-3.282 6.11-9.238l-5.741-14.107h-26.752l.005.003-5.125 14.226c-2.2 6.2-2.07 9.116 9.65 9.116h1.586v4.741h-32.37v-4.741h1.837c5.858 0 8.912-2.67 11.966-11.182L137.313 4.03 135.967.5h18.073ZM141.59 14.733l-10.26 28.448h21.492L141.59 14.733ZM352.674 2.62c1.114 0 2.164.213 3.148.64a8.412 8.412 0 0 1 2.58 1.726 8.042 8.042 0 0 1 1.743 2.562c.427.984.64 2.034.64 3.148a7.702 7.702 0 0 1-.64 3.131 8.097 8.097 0 0 1-1.743 2.544 8.158 8.158 0 0 1-2.58 1.708 8.02 8.02 0 0 1-3.148.623 8.02 8.02 0 0 1-3.15-.623 8.158 8.158 0 0 1-2.579-1.708 8.097 8.097 0 0 1-1.743-2.544 7.702 7.702 0 0 1-.64-3.13c0-1.115.213-2.165.64-3.15a8.042 8.042 0 0 1 1.743-2.561 8.412 8.412 0 0 1 2.58-1.726 7.827 7.827 0 0 1 3.149-.64Zm0 1.245c-.95 0-1.839.178-2.669.534a6.854 6.854 0 0 0-2.17 1.459 6.854 6.854 0 0 0-1.459 2.17 6.702 6.702 0 0 0-.533 2.668c0 .925.177 1.803.533 2.633a7.07 7.07 0 0 0 1.459 2.188 6.71 6.71 0 0 0 2.17 1.477c.83.356 1.72.534 2.669.534.948 0 1.838-.178 2.668-.534a6.71 6.71 0 0 0 2.17-1.477 7.07 7.07 0 0 0 1.46-2.188c.355-.83.533-1.708.533-2.633 0-.948-.178-1.838-.534-2.668a6.854 6.854 0 0 0-1.459-2.17 6.854 6.854 0 0 0-2.17-1.46 6.702 6.702 0 0 0-2.668-.533Zm.035 2.242.318.009c.316.017.625.062.928.133a3.3 3.3 0 0 1 1.085.463c.32.213.575.486.765.818.19.332.284.747.284 1.245 0 .664-.19 1.204-.569 1.619-.38.415-.89.694-1.53.836l2.455 3.985h-1.992l-2.135-3.807h-1.174v3.807h-1.637V6.107h3.202Zm-.07 1.387h-1.495v2.598h1.316a3.48 3.48 0 0 0 1.352-.267c.427-.178.64-.54.64-1.085 0-.499-.195-.83-.586-.997-.392-.166-.801-.249-1.228-.249Z"></path></svg>
826 </a>
827 </div>
828
829 <div class="footer__switcher">
830
831 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Company_Name.Value")))
832 {
833 <section class="footer-address" itemscope="" itemtype="http://schema.org/PostalAddress">
834 <h4 class="footer__heading">@Translate("ContactUs", "Contact Us")</h4>
835 <p class="address">
836 <span class="h-adr adr">
837 <span class="fn p-org org">@GetString("Item.Area.Company_Name.Value")</span><br>
838 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Company_Address")))
839 {
840 <span class="p-street-address street-address" itemprop="streetAddress">@GetString("Item.Area.Company_Address.Value")</span>
841 }
842 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Company_Address_2.Value")))
843 {
844 <br><span class="p-street-address street-address" itemprop="streetAddress">@GetString("Item.Area.Company_Address_2.Value")</span>
845 }
846 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Town_City.Value")))
847 {
848 <br> <span class="p-street-address street-address" itemprop="addressLocality">@GetString("Item.Area.Town_City.Value")</span>
849 }
850 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.County.Value")))
851 {
852 <br><span class="p-street-address street-address" itemprop="addressRegion">@GetString("Item.Area.County.Value")</span>
853 }
854 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Postcode.Value")))
855 {
856 <br><span class="p-street-address street-address" itemprop="postalCode">@GetString("Item.Area.Postcode.Value")</span>
857 }
858 </span>
859 </p>
860 <ul class="footer__list" role="list">
861 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Contact_Email_Link")))
862 {
863 string mailTo = "mailto:" + GetString("Item.Area.Contact_Email_Link");
864 <li>
865 <a href="@mailTo">
866 E: <span itemprop="email">@GetString("Item.Area.Contact_Email")</span>
867 </a>
868 </li>
869 }
870 @if (!string.IsNullOrWhiteSpace(GetString("Item.Area.Telephone")))
871 {
872 string telTo = "tel:" + GetString("Item.Area.Telephone");
873 <li>
874 <a href="@telTo">
875 T: <span itemprop="telephone">@GetString("Item.Area.Telephone")</span>
876 </a>
877 </li>
878 }
879 </ul>
880 </section>
881 }
882
883 <section>
884 <h4 class="footer__heading">@Translate("CompanyInformation", "Company Information")</h4>
885 <nav>
886 @GetValue("DwNavigation(footerpages)")
887 </nav>
888
889 @{
890 int legalsLink = 0;
891 var legalsPage = HagsWeb.Library.Methods.Page.HagsPages.GetPageByNavigationTag("Legals", masterArea.ID);
892 if (legalsPage != null)
893 {
894 legalsLink = legalsPage.ID;
895 }
896
897 if (legalsLink > 0)
898 {
899
900 <ul class="footer__list" role="list">
901 <li><a href="/Default.aspx?ID=@legalsLink">@Translate("PrivacyPolicy", "Privacy Policy")</a></li>
902 <li><a href="/Default.aspx?ID=@legalsLink">@Translate("CookieNotice", "Cookie Notice")</a></li>
903 <li><a href="/Default.aspx?ID=@legalsLink">@Translate("TermsConditions", "Terms & Conditions")</a></li>
904 </ul>
905 }
906 }
907 </section>
908
909
910
911 @if (GetString("Item.Area.Form_Provider") == "sharpspring-provider")
912 {
913 if (!String.IsNullOrWhiteSpace(GetString("Item.Area.Newsletter_Form_ID.Value")))
914 {
915 <!-- SharpSpring Form Provider -->
916 <div class="sharpspring-provider">
917 <h4 class="footer__heading">@Translate("JoinOurNewsletter", "Join our Newsletter")</h4>
918 @{
919 string ss_src_newsletter = string.Format("https://{0}/client/form.js?ver=2.0.1", GetString("Item.Area.Contact_Form_Domain.Value"));
920 }
921 <!-- SharpSpring Form for Newsletter Form: Revised Formatting -->
922 <script type="text/javascript">
923 var ss_form = {'account': '@GetString("Item.Area.Contact_Form_Account_ID.Value")', 'formID': '@GetString("Item.Area.Newsletter_Form_ID.Value")'};
924 ss_form.width = '100%';
925 ss_form.domain = '@GetString("Item.Area.Contact_Form_Domain.Value")';
926 // ss_form.hidden = {'field_id': 'value'}; // Modify this for sending hidden variables, or overriding values
927 // ss_form.target_id = 'target'; // Optional parameter: forms will be placed inside the element with the specified id
928 // ss_form.polling = true; // Optional parameter: set to true ONLY if your page loads dynamically and the id needs to be polled continually.
929 </script>
930 <script type="text/javascript" src="@ss_src_newsletter"></script>
931 </div>
932 <!-- End of SharpSpring Form Provider -->
933 }
934 }
935
936 @if (GetString("Item.Area.Form_Provider") == "apsis-provider")
937 {
938 if (!String.IsNullOrWhiteSpace(GetString("Item.Area.APSIS_Newsletter_Form_ID.Value")))
939 {
940 <!-- APSIS Form Provider -->
941 <div class="apsis-provider">
942 <h4 class="footer__heading">@Translate("JoinOurNewsletter", "Join our Newsletter")</h4>
943 @{
944 string apsis_form = string.Format("afp-{0}", GetString("Item.Area.APSIS_Newsletter_Form_ID.Value"));
945 }
946 <script src="https://forms.apsisforms.com/formbuilder.js"></script>
947 <script>
948 (function() {
949 var form = new ApsisForms.FormbuilderInstance();
950 form.init({
951 formId: '@GetString("Item.Area.APSIS_Newsletter_Form_ID.Value")'
952 });
953 })();
954 </script>
955 <div class='@apsis_form'> </div>
956 </div>
957 <!-- End of APSIS Form Provider -->
958 }
959 }
960 <section>
961 <h4 class="footer__heading">@Translate("FindUs", "Find Us")</h4>
962 <ul class="footer__list">
963 <!-- Social Media items -->
964 @foreach (var item in @GetLoop("Item.Area.Social_Media"))
965 {
966 var linkUrl = item.GetValue("Item.Area.Social_Media.Social_Link");
967 string linkTitle = item.GetString("Item.Area.Social_Media.Social_Icon");
968 string linkIcon = "/Files/Templates/Designs/HagsCore/res/img/icons/social/" + linkTitle + ".png";
969 <li><a href="@linkUrl" target="_blank">@linkTitle</a></li>
970 }
971 </ul>
972 </section>
973
974 </div>
975 </div>
976
977
978 </footer>
979
980 @if ( false )
981 {
982 if (GetString("Item.Area.Form_Provider") == "sharpspring-provider")
983 {
984 if (!String.IsNullOrWhiteSpace(GetString("Item.Area.Contact_Form_ID.Value")))
985 {
986 <!-- SharpSpring Form Provider -->
987 <div class="sharpspring-provider">
988
989 <div id="sharpspring-form-message" class="sharpspring-form-message">
990 <div id="sharpspring-form-message-container" class="sharpspring-form-message-container active hide-help hide-help-2">
991 <p class="close-form"><a id="hide-sharpspring" href="#">X</a></p>
992 <a id="open-sharpspring" class="btn" href="/en-us/play" role="button">@GetString("Item.Area.Contact_Button_CTA.Value")</a>
993 </div>
994 </div>
995
996 <div id="sharpspring-form-popup" class="overlay sharpspring-form-popup">
997 <div class="sharpspring-form-popup-container">
998 <p class="close-form"><a href="#" id="close-sharpspring">X</a></p>
999 <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 pop-up-information">
1000 @{
1001 string image = string.Format("{0}", GetString("Item.Area.Contact_Image.Value"));
1002 }
1003 <h4>@GetString("Item.Area.Contact_Headline.Value")</h4>
1004 @GetString("Item.Area.Contact_Copy.Value")
1005 <img src="@image" class="pop-up-image img-responsive">
1006 </div>
1007
1008 <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
1009 @{
1010 string ss_src = string.Format("https://{0}/client/form.js?ver=2.0.1", GetString("Item.Area.Contact_Form_Domain.Value"));
1011 }
1012 <!-- SharpSpring Form for Contact Form: Revised Formatting -->
1013 <script type="text/javascript">
1014 var ss_form = {'account': '@GetString("Item.Area.Contact_Form_Account_ID.Value")', 'formID': '@GetString("Item.Area.Contact_Form_ID.Value")'};
1015 ss_form.width = '100%';
1016 ss_form.domain = '@GetString("Item.Area.Contact_Form_Domain.Value")';
1017 // ss_form.hidden = {'field_id': 'value'}; // Modify this for sending hidden variables, or overriding values
1018 // ss_form.target_id = 'target'; // Optional parameter: forms will be placed inside the element with the specified id
1019 // ss_form.polling = true; // Optional parameter: set to true ONLY if your page loads dynamically and the id needs to be polled continually.
1020 </script>
1021 <script type="text/javascript" src="@(ss_src)"></script>
1022 </div>
1023 </div>
1024 </div>
1025 </div>
1026 <!-- End of SharpSpring Form Provider -->
1027 }
1028 }
1029
1030 if (GetString("Item.Area.Form_Provider") == "apsis-provider")
1031 {
1032 if (!String.IsNullOrWhiteSpace(GetString("Item.Area.APSIS_Contact_Form_ID.Value")))
1033 {
1034 <!-- APSIS Form Provider -->
1035 <div class="sharpspring-provider">
1036 <div id="sharpspring-form-message" class="sharpspring-form-message">
1037 <div id="sharpspring-form-message-container" style="display: none;" class="sharpspring-form-message-container active hide-help hide-help-2">
1038 <p class="close-form"><a id="" href="#">X</a></p>
1039 <a id="open-sharpspring" class="btn" href="/en-us/play" role="button">@GetString("Item.Area.APSIS_Contact_Button_CTA.Value")</a>
1040 </div>
1041 </div>
1042
1043 <div id="sharpspring-form-popup" class="overlay sharpspring-form-popup">
1044 <div class="sharpspring-form-popup-container">
1045 <p class="close-form"><a href="#" id="close-sharpspring">X</a></p>
1046 <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 pop-up-information">
1047 @{
1048 string image = string.Format("{0}", GetString("Item.Area.Contact_Image.Value"));
1049 }
1050 <h4>@GetString("Item.Area.APSIS_Contact_Headline.Value")</h4>
1051 @GetString("Item.Area.APSIS_Contact_Copy.Value")
1052 <img src="@image" class="pop-up-image img-responsive">
1053 </div>
1054
1055 <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
1056 @{
1057 string apsis_form = string.Format("afp-{0}", GetString("Item.Area.APSIS_Contact_Form_ID.Value"));
1058 }
1059 <script src="https://forms.apsisforms.com/formbuilder.js"></script>
1060 <script>
1061 (function() {
1062 var form = new ApsisForms.FormbuilderInstance();
1063 form.init({
1064 formId: '@GetString("Item.Area.APSIS_Contact_Form_ID.Value")'
1065 });
1066 })();
1067 </script>
1068 <div class='@apsis_form'> </div>
1069 </div>
1070 </div>
1071 </div>
1072 </div>
1073 <!-- End of APSIS Form Provider -->
1074 }
1075 }
1076 }
1077
1078
1079 @*IncludeFile("partials/footer-scripts.cshtml")*@
1080
1081 <dialog class="modal" id="adviceModal">
1082
1083 <div class="modal__body">
1084
1085 <div class="modal__header">
1086
1087 <div class="modal__close">
1088 <button type="button" class="action-btn js-modal-close-target" data-target-id="adviceModal">
1089 <span class="visually-hidden">Close</span>
1090 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
1091 </button>
1092 </div>
1093
1094 <h3 class="ts-2" id="advice-title">
1095 <span>Information</span>
1096 </h3>
1097
1098 </div>
1099
1100 <div class="modal__main">
1101
1102 <div id="result-advice" class="advice-message"></div>
1103
1104 </div>
1105
1106 <div class="modal__footer">
1107
1108 <button type="button" class="btn btn--outline js-modal-close-target" data-target-id="adviceModal">
1109 @Translate("Close", "Close")
1110 </button>
1111
1112 </div>
1113
1114 </div>
1115
1116 </dialog>
1117 @inherits Dynamicweb.Rendering.RazorTemplateBase<Dynamicweb.Rendering.RazorTemplateModel<Dynamicweb.Rendering.Template>>
1118 @using System.Collections.Generic
1119 @using HagsWeb.Library.BusinessObjects.UsersLists
1120
1121 @{
1122 int currentAreaID = int.TryParse(GetGlobalValue("Global:Area.ID"), out currentAreaID) ? currentAreaID : 0;
1123 var currentArea = new Dynamicweb.Content.AreaService().GetArea(currentAreaID);
1124
1125 //List<ProductCollectionItem> productCollectionItems = SessionManager.UsersMyProductCollection != null ? SessionManager.UsersMyProductCollection : new List<ProductCollectionItem>();
1126
1127 }
1128
1129 <dialog id="CreateCatalog" class="modal modal--full">
1130
1131 <div class="modal__body">
1132
1133 <div class="modal__header">
1134
1135 <div class="modal__close">
1136 <button type="button" class="action-btn js-modal-close-target" data-target-id="CreateCatalog">
1137 <span class="visually-hidden">Close</span>
1138 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
1139 </button>
1140 </div>
1141
1142 <h4 class="modal-title" id="CreateCatalogModalLabel">
1143 @Translate("CreateYourCatalog", "Create Your Catalogue")
1144 </h4>
1145
1146 </div> <!-- header -->
1147
1148 <div class="modal__main">
1149
1150 <div id="div_CreateCatalog" class="modal__pdf-grid">
1151
1152 <div class="modal__forms">
1153
1154 <form id="frm_CreateCatalog">
1155 <input type="hidden" name="areaId" value="@(currentArea.ID)">
1156 <input type="hidden" name="languageId" value="@currentArea.EcomLanguageId">
1157 <input type="hidden" value="#CreateCatalog" name="catType">
1158 <input type="hidden" name="weglotLang" value="">
1159 <fieldset>
1160 <div>
1161 <label for="catHagsCatalogName">@Translate("HagsCatalogName", "Hags Catalog Name"):</label>
1162 <input type="text" class="form-control search-group" value="" name="catHagsCatalogName">
1163 </div>
1164
1165 <label for="catHagsContactName">@Translate("HagsContactName", "Hags Contact Name"):</label>
1166 <input type="text" class="form-control search-group" value="" name="catHagsContactName">
1167
1168 <label for="catHagsContactPhone">@Translate("HagsPhoneNumber", "Hags Phone Number"):</label>
1169 <input type="text" class="form-control search-group" value="" name="catHagsContactPhone">
1170
1171 <label for="catHagsContactEmail">@Translate("HagsContactEmail", "Hags Contact Email"):</label>
1172 <input type="email" class="form-control search-group" value="" name="catHagsContactEmail">
1173
1174 <label for="catCompanyName">@Translate("CompanyName", "Company Name"):</label>
1175 <input type="text" class="form-control search-group" value="" name="catCompanyName">
1176
1177 <label for="catAddress">@Translate("CompanyAddress", "Company Address"):</label>
1178 <input type="text" class="form-control search-group" value="" name="catAddress">
1179
1180 <input type="text" class="form-control search-group" value="" name="catAddress2">
1181
1182 <label for="catAddrTown">@Translate("CompanyTown", "Company Town"):</label>
1183 <input type="text" class="form-control search-group" value="" name="catAddrTown">
1184
1185 <label for="catAddrPostCode">@Translate("CompanyPostCode", "Company Postal Code"):</label>
1186 <input type="text" class="form-control search-group" value="" name="catAddrPostCode">
1187
1188 <label for="catAddrCountry">@Translate("CompanyCountry", "Company Country"):</label>
1189 <input type="text" class="form-control search-group" value="" name="catAddrCountry">
1190
1191
1192 </fieldset>
1193 </form>
1194
1195
1196 @*Switch Form here*@
1197
1198 <form id="frm_CatalogEmailSettings" style="display:none">
1199 <input type="hidden" name="pdfFileName" value="">
1200 <input type="hidden" name="areaId" value="@currentAreaID">
1201 <input type="hidden" name="weglotLang" value="">
1202
1203 <fieldset>
1204
1205 <label for="emailFrom">@Translate("EmailFrom", "Email from"):</label>
1206 <input type="email" class="form-control search-group" name="emailFrom" required="" value="">
1207
1208 <label for="emailTo">@Translate("EmailTo", "Email to"):</label>
1209 <input type="email" class="form-control search-group" name="emailTo" required="" value="">
1210
1211 <label for="emailSubject">@Translate("EmailSubject", "Subject"):</label>
1212 <input type="text" class="form-control search-group" name="emailSubject" value="">
1213
1214 <label for="emailMessage">@Translate("Message", "Message"):</label>
1215 <textarea class="form-control" name="emailMessage" cols="45" rows="7" value=""></textarea>
1216
1217 </fieldset>
1218
1219 <div name="emailProgressContent" style="display:none;">
1220 <span id="CreateCatalogueEmailLabel" style="display: block; text-align: center; margin: auto;">@Translate("SendingYourEmail", "Sending your Email")</span>
1221 <img src="/Files/Templates/Designs/HagsCore/res/img/loader/ajax-loader.gif" style="margin: auto; display: block;">
1222 </div>
1223
1224 <div name="emailProgress" style="display: none;"></div>
1225
1226 <div class="m-search-advanced-buttons text-right" name="preSendEmail" style="display: block;">
1227
1228 <button class="btn btn--outline" name="emailcatalogue" type="button" role="button">@Translate("SendEmail", "Send Email")</button>
1229 <button class="btn btn--outline" style="display: none;" name="refreshemail" type="button" role="button">@Translate("Refresh", "Refresh")</button>
1230 <button class="btn btn--outline" name="cancelemail" type="button" role="button" data-modal-name="catalogue">@Translate("Cancel", "Cancel")</button>
1231
1232 </div>
1233
1234
1235 <div class="m-search-advanced-buttons text-center" name="downloadResend" style="display: none;">
1236
1237 <button class="btn btn--outline" style="display: none;" name="resendcatalogue" type="button" role="button">@Translate("SendEmail", "Send Email")</button>
1238 <button class="btn btn--outline" style="margin: 2px;" name="refreshemail" type="button" role="button">@Translate("ClearFormSendAgain", "Clear form and send again")</button><br>
1239 <a href="" class="btn btn--outline" name="pdfDownloadLink" download="">@Translate("DownloadCatalogue", "Download Catalogue")</a>
1240 <button class="btn btn--outline js-modal-close-target" data-target-id="CreateCatalog" type="button">@Translate("CloseWindow", "Close Window")</button>
1241
1242 </div>
1243
1244 </form>
1245
1246 <script>
1247 $("#frm_CatalogEmailSettings").validate();
1248 </script>
1249
1250 </div>
1251
1252 <div id="loader" style="display:none;text-align:center">
1253 <span id="CreateCataloguePdfLabel" style="display: inline-block;margin: 10px 10px 0 0;padding: 5px 10px"></span>
1254 <img src="/Files/Templates/Designs/Hags2024/assets/img/loader/ajax-loader.gif" style="margin:auto;display:block;">
1255 </div>
1256
1257 <div id="pdfViewer" class="modal__embed-silo"></div>
1258
1259 </div>
1260
1261 </div> <!-- main -->
1262
1263
1264 <div class="modal__footer">
1265
1266 <div class="m-search-advanced-buttons cluster cluster--dialog">
1267
1268 <button class="btn btn--outline" name="updatecatalogue" role="button" type="button">
1269 @Translate("UpdateCatalogue", "Update Catalog")
1270 </button>
1271
1272
1273
1274 <button class="btn btn--outline" name="createemail" data-modal-name="catalogue" type="button" role="button">@Translate("EmailCatalogue", "Email Catalogue")</button>
1275 <button class="btn btn--outline" id="pdfPrintCatalogue" target="_blank" type="button">@Translate("Print", "Print")</button>
1276 <a class="btn btn--outline" href="#" id="pdfDownloadCatalogue" type="button" download="">@Translate("Download", "Download")</a>
1277 <button class="btn btn--outline js-modal-close-target" data-target-id="CreateCatalog" type="button">@Translate("Close", "Close")</button>
1278
1279 </div>
1280
1281 </div> <!-- footer -->
1282
1283 </div>
1284
1285 </dialog>
1286 @inherits Dynamicweb.Rendering.RazorTemplateBase<Dynamicweb.Rendering.RazorTemplateModel<Dynamicweb.Rendering.Template>>
1287 @using HagsWeb.Library.State;
1288 @using HagsWeb.Library.BusinessObjects.UsersLists;
1289 @{
1290
1291 int saveCollectionAreaID = HagsWeb.Library.Utilities.WebUtilities.CheckInteger(GetGlobalValue("Global:Area.ID"));
1292 Dynamicweb.Content.Page saveCollectionMyHagsRegistrationPage = HagsWeb.Library.Methods.Page.HagsPages.GetPageByNavigationTag("CreateAccountPage", saveCollectionAreaID);
1293
1294 bool savecollection = bool.Parse(string.IsNullOrEmpty(Dynamicweb.Context.Current.Request.QueryString.Get("savecollection")) ? "false" : Dynamicweb.Context.Current.Request.QueryString.Get("savecollection"));
1295
1296 string areaLanguage = GetGlobalValue("Global:Area.Lang");
1297
1298 EditCollection editSession = new EditCollection();
1299 if (SessionManager.IsSessionValueSet("EditCollectionSession_" + GetGlobalValue("Global:Extranet.UserID")))
1300 {
1301 editSession = (EditCollection)SessionManager.GetSessionItem("EditCollectionSession_" + GetGlobalValue("Global:Extranet.UserID"));
1302 }
1303
1304 string currentCollectionName = string.Empty; // Dynamicweb.Context.Current.Request.QueryString.Get("collection");
1305 string currentCollectionDescription = string.Empty;
1306 string currentCollectionOriginalFileName = string.Empty;
1307 if (editSession != null)
1308 {
1309 currentCollectionName = editSession.CollectionName;
1310 currentCollectionDescription = editSession.CollectionDescription;
1311 currentCollectionOriginalFileName = editSession.OriginalFileName;
1312 }
1313
1314 bool isLoggedIn = false;
1315 if (!String.IsNullOrWhiteSpace(GetGlobalValue("Global:Extranet.UserName")))
1316 {
1317 isLoggedIn = true;
1318 }
1319
1320 string saveCollectionValidationMessages = string.Format("messages_{0}.min.js", GetGlobalValue("Global:Area.Lang"));
1321 string saveCollectionAreaLanguage = GetGlobalValue("Global:Area.Lang");
1322 string saveCollectionLoginPageId = GetGlobalValue("Global:Page.ID");
1323 string UserId = GetGlobalValue("Global:Extranet.UserID");
1324 //string designBaseUrl = GetString("Template:DesignBaseUrl");
1325
1326 // Notes: for the Forgotten Password we now are just advising the user to contact their local office for a reset
1327 // We do however maintain the original code as is for when they change their mind back again!
1328 }
1329
1330
1331 @*@Scripts.Render("~/bundle/Validation")*@
1332
1333 <dialog class="modal" id="saveCollection">
1334
1335 @if (areaLanguage != "en")
1336 {
1337 <script src="@(designBaseUrl)assets/js/libraries/validation/localization/@saveCollectionValidationMessages"></script>
1338 }
1339
1340 <div class="modal__body">
1341
1342 <div class="modal__header">
1343
1344 <div class="modal__close">
1345 <button type="button" class="action-btn js-modal-close-target" data-target-id="saveCollection">
1346 <span class="visually-hidden">Close</span>
1347 <svg viewbox="0 0 212 212" xmlns="http://www.w3.org/2000/svg" class="h24-icon h24-icon--close"><path d="M100 0c55.193 0 100 44.807 100 100s-44.807 100-100 100S0 155.193 0 100 44.807 0 100 0Zm0 5.333c-26.124 0-49.792 10.603-66.928 27.74C15.936 50.207 5.333 73.875 5.333 100c0 26.124 10.603 49.792 27.74 66.928 17.135 17.136 40.803 27.739 66.927 27.739 26.124 0 49.792-10.603 66.928-27.74 17.136-17.135 27.739-40.803 27.739-66.927 0-26.124-10.603-49.792-27.74-66.928C149.793 15.936 126.125 5.333 100 5.333Zm25.105 78.865L110.17 99.664l15.466 14.935a6.5 6.5 0 0 1 .16 9.191l-.694.72a6.5 6.5 0 0 1-9.191.16l-15.466-14.935-14.935 15.466a6.5 6.5 0 0 1-9.191.16l-.72-.694a6.5 6.5 0 0 1-.16-9.191l14.935-15.466-15.466-14.935a6.5 6.5 0 0 1-.16-9.191l.694-.72a6.5 6.5 0 0 1 9.191-.16L100.1 89.939l14.935-15.466a6.5 6.5 0 0 1 9.191-.16l.72.694a6.5 6.5 0 0 1 .16 9.191Z" fill="currentColor" fill-rule="evenodd"></path></svg>
1348 </button>
1349 </div>
1350
1351 <h3 class="ts-2">
1352 @Translate("SaveMyHagsCollection", "Save HAGS Connect Collection")
1353 </h3>
1354
1355 </div>
1356
1357 <div class="modal__main">
1358
1359 <input type="hidden" id="action" value="">
1360
1361 <form role="form" method="post" id="saveCollectionForm" action="">
1362
1363 <input type="hidden" name="UserId" value="@UserId">
1364 <input type="hidden" name="OriginalFileName" value="@currentCollectionOriginalFileName">
1365
1366 <div class="form-group">
1367 <label for="collectionName">@Translate("CollectionName", "Name of Collection") <sup>*</sup></label>
1368 <input type="text" class="form-control" name="CollectionName" value="@currentCollectionName" required="" placeholder='@Translate("CollectionName", "Name of Collection")'>
1369 </div>
1370
1371 <div class="form-group">
1372 <label for="collectionDescription">@Translate("CollectionDescription", "Description") <sup>*</sup></label>
1373 <textarea type="text" class="form-control" rows="4" cols="50" name="CollectionDescription" required="" placeholder='@Translate("CollectionDescription", "Description")'>@currentCollectionDescription</textarea>
1374 </div>
1375
1376 <div id="resultAdvice"></div>
1377
1378 </form>
1379
1380
1381 <script>
1382 //$("#saveCollectionloginForm").validate();
1383 $("#saveCollectionForm").validate();
1384 </script>
1385
1386 </div>
1387
1388
1389 <div class="modal__footer">
1390
1391 <button type="submit" id="save" name="savecollection" class="btn btn--outline">@Translate("Save", "Save")</button>
1392 <button type="button" id="continue" name="modalclose" class="btn btn--outline js-modal-close-target" data-target-id="saveCollection">@Translate("Close", "Close")</button>
1393 <!--button type="button" id="new" name="removecollection" class="btn btn--outline" data-removeproductlist="All" data-dismiss="modal">@Translate("StartNewCollection", "Start a new collection")</button-->
1394
1395 </div>
1396
1397 </div>
1398
1399 </dialog>
1400
1401 }
1402
1403
1404 @* this snippet is from the case studies item listing *@
1405 @RenderSnippet("bodyScripts")
1406
1407
1408 @SnippetStart("bodyScripts")
1409
1410 @* my collection scripts *@
1411
1412 <script type="text/javascript" src="@(designBaseUrl)assets/js/libraries/filesaver/filesaver.min.js"></script>
1413 <script type="text/javascript" src="@(designBaseUrl)assets/js/functions/product-collection.js"></script>
1414 @* <script type="text/javascript" src="@(designBaseUrl)assets/js/functions/product-collection.js?v=1.2&ts=@jsTimestamp"></script>*@
1415
1416 @* contact form scripts *@
1417 <script type="text/javascript" src="@(designBaseUrl)assets/js/functions/contact-us-forms.js"></script>
1418
1419
1420 @* load the embla carousel script *@
1421 <script data-cookieconsent="ignore" type="text/javascript" src="@(designBaseUrl)assets/js/libraries/embla/embla-carousel.umd.js"></script>
1422 <script data-cookieconsent="ignore" type="text/javascript" src="@(designBaseUrl)assets/js/libraries/embla/embla-carousel-fade.umd.js"></script>
1423
1424 <!--script src='https://online3.superoffice.com/Cust29133/CS/javascript/chat.js' data-topicId='2' data-title='Chatta med oss!' data-theme='modern' data-color='#0080FF' data-badgeColor='#4f6128' data-badgeTextColor='#ffffff' data-custMsgColor='#dbe5f1' data-custMsgTextColor='#000000' data-agentMsgColor='#c3d69b' data-agentMsgTextColor='#000000' data-buttonColor='#d4d4d4' data-buttonTextColor='' data-font='"Verdana", "Gill Sans", Arial, sans-serif' data-fontSize='12px' data-size='normal' data-delay='1' defer></script-->
1425 @SnippetEnd("bodyScripts")
1426
1427 </body>
1428 </html>
1429
1430
1431