There was a problem with a Velocity script Pageinsideathletics/default-decorator ErrorInvocation of method 'include' in class com.prestosports.render.ContentEngineInvoker threw exception javax.servlet.ServletException: javax.servlet.ServletException: java.lang.RuntimeException: java.lang.NoClassDefFoundError: Could not initialize class java.awt.Dimension at gnmvbluqq52fdpbzinsideathletics/default-decorator[line 35, column 18] Page source:
1: #set ($pageContainer    = "container p-3 my-lg-5 my-4 border shadow-sm bg-white")
2: #set ($pageClass        = "internal-page")
3: #set ($showBookmark     = true)
4: #set ($landing          = false)
5: 
6: #if ($request.getAttribute("pageContainer")) #set ($pageContainer = $request.getAttribute("pageContainer")) #end
7: #if ($request.getAttribute("pageClass")) #set ($pageClass = $request.getAttribute("pageClass")) #end
8: #if ($request.getAttribute("showBookmark") == false) #set ($showBookmark = false) #end
9: #if ($request.getAttribute("landing"))
10:     #set ($landing = $request.getAttribute("landing"))
11:     #set ($landing = $Boolean.parseBoolean($landing))
12: #end
13: 
14: ## PICK UP OPTIONS
15: $website.include("options")
16: #set ($options = $request.getAttribute("options"))
17: 
18: #set ($language = "en")
19: #if ($options.get("site_lang") != "en")
20:     #set ($language = $options.get("site_lang"))
21: #end
22: 
23: #set ($lightColorClass = "")
24: #if($options.get("primary_color_light") == true)
25:     #set ($lightColorClass = "${lightColorClass} primary-color-light")
26: #end
27: #if($options.get("secondary_color_light") == true)
28:     #set ($lightColorClass = "${lightColorClass} secondary-color-light")
29: #end
30: 
31: <!doctype html>
32: <html lang="${language}" class="${pageClass} ${lightColorClass}" data-theme-2="finishline">
33:     <head>
34:         $!request.setAttribute("pageObj", $page)
35:         $website.include("inc-head")
36:         $!head
37:         <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
38:         <link rel="stylesheet" href="/theme.css" type="text/css" />
39:         <link rel="stylesheet" href="/site.css" type="text/css" />
40:         
41:         #if ($website.profile.siteLogo.getUrl().length() > 0)
42:             <style>
43:                 :root { --site-logo-url: url(${website.profile.siteLogo.getUrl()}); }
44:             </style>
45:         #end
46:         
47:     </head>  
48:     <body>
49:         
50:         <a href="#site-navigation" class="visually-hidden-focusable">Skip to navigation</a>
51:         <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
52:         <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
53: 
54:             #if ($website.ads.isMediaHeaderAdsEnabled())
55:             <!-- 728x90/970x90/320x50 -->
56:             <div id="waldo-tag-leaderboard"></div>
57:             #end
58: 
59:             $website.include("header")
60: 
61:             #if (!$landing && ($website.ads.isMediaSidebarAdsEnabled() || $options.get("sidebar-ads")))
62:             <aside class="container sidebar-placeholder p-0" style="height:0;">
63:                 <!-- 160x600 -->
64:                 <div id="waldo-tag-left-sidebar" style="display:none;"></div>
65:                 <!-- 160x600 -->
66:                 <div id="waldo-tag-right-sidebar" style="display:none;"></div>
67:             </aside>
68:             #end
69: 
70:             #if (!$landing && $website.ads.isMediaAdsEnabled() && !$website.ads.isMediaHeaderAdsEnabled())
71:             <!-- 728x90/970x90/970x250/300x250/320x50 -->
72:             <div id="waldo-tag-banner"></div>
73:             #end
74:         
75:         <main id="site-main" class="site-main" role="main">
76:             <div class="${pageContainer}">
77:                 $body 
78:                 #if ($showBookmark) $website.include("share-buttons") #end
79:                 $wiki
80:             </div>
81:         </main>
82: 
83:             #if ($website.ads.isMediaAdsEnabled())
84:             <!-- 728x90/970x90/970x250/300x250/320x50 -->
85:             <div id="waldo-tag-bottom-banner"></div>
86:             #end
87: 
88:             $website.include("footer")
89: 
90:             #if ($website.ads.isMediaOverlayAdsEnabled())
91:             <!-- Sticky Footer --><!-- 728x90/320x50 -->
92:             <div id="waldo-tag-sticky-footer"></div>
93:             #end
94: 
95:         $!wiki.su
96:         $website.usage
97:         $website.include("dropoff-scripts")
98:         <script type="text/javascript" src="https://theme-assets.prestosports.com/theme-assets/finishline/assets/js/addons.js"></script>
99:     </body>
100: </html>