There was a problem with a Velocity script
Page/default-decorator
ErrorInvocation of method 'include' in class com.prestosports.render.ContentEngineInvoker threw exception java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed. at qrxt85x2hcif5sq9/default-decorator[line 42, column 10]
Page source:
1: #if ($website.redesign)
2: ## NEW SITE
3: 
4: 
5: #set ($pageClass = "internal-page")
6: #set ($showBookmark = true)
7: 
8: #if ($request.getAttribute("pageClass"))
9:   #set ($pageClass = $request.getAttribute("pageClass"))
10: #end
11: 
12: #if ($request.getAttribute("showBookmark") == false)
13:   #set ($showBookmark = false)
14: #end
15: 
16: <!DOCTYPE html>
17: <!--[if IE 8 ]>    <html lang="en" class="${pageClass} no-js ie8" prefix="og: http://ogp.me/ns#"> <![endif]-->
18: <!--[if IE 9 ]>    <html lang="en" class="${pageClass} no-js ie9" prefix="og: http://ogp.me/ns#"> <![endif]-->
19: <!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="${pageClass} no-js" prefix="og: http://ogp.me/ns#"><!--<![endif]-->
20: 
21: <head>
22: <meta charset="UTF-8">
23: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
24: <title>$pageTitle</title>
25: 
26: ## OGP META TAGS
27: $!request.setAttribute("pageObj", $page)
28: $website.include("ogp-tags")
29: 
30: <script src="$website.cdn("/info/jquery.js")"></script>
31: <script src="$website.cdn("/info/modernizr.js")"></script>
32: 
33: #if ($page.url == '/sports/mbkb/2021-22/leaders')
34: <style> 
35: .full-standings,
36: .rich-v2 { display:none } </style>
37: #end
38: 
39: <link rel="stylesheet" href="$website.cdn("/info/boilerplate.css")" type="text/css" />
40: <link rel="stylesheet" href="/css/styles.css" type="text/css" />
41: 
42: $website.include("analytics")
43: 
44: $!head
45: </head>
46: 
47: <body>
48: 
49: <div id="page" class="page clearfix">
50: <div class="wrapper clearfix">
51: 
52: ## HEADER
53: $website.include("site-header")
54: 
55: ## SECONDARY NAVIGATION
56: $website.includeAgain("navbar-secondary?class=secondary-nav&moreAfter=5")
57: 
58: ## BODY CONTAINER
59: <div class="body-container clearfix">
60: 
61: ## BODY CONTENT
62: <main id="mainbody" class="mainbody clearfix" role="main">
63:     
64: ## RELATED LINKING - 20090930
65: #if (!($request.getAttribute("disable_related_links").length() > 0))
66: #set ($relatedPages = $page.relatedInSchedule)
67: #if ($relatedPages.size() > 1)
68: <div class="page-related-links clearfix">
69:  #foreach ($related in $relatedPages)
70:    #if ($velocityCount > 1) | #end
71:    #if ($related.id == $page.id)
72:       <strong>${related.mapLabel}</strong>
73:    #else
74:       <a href="$related.url" #if ($website.isExternalLink($related.url)) target="_blank" #end>${related.mapLabel}</a>
75:     #end
76:  #end
77: </div>
78: #end ## related > 1
79: #end ## disable
80: 
81: $body
82: 
83: ## BOOK MARK
84: #if ($showBookmark)
85:   $website.include("share-buttons")
86: #end
87: $wiki
88: 
89: </main> ## mainbody
90: </div> ## body-container
91: 
92: ## FOOTER    
93: $website.include("site-footer")
94: 
95: </div> ## wrapper
96: </div> ## page
97: 
98: $!wiki.su
99: 
100: $website.usage
101: $website.include("dropoff-scripts")
102: 
103: </body>
104: </html>
105: 
106: 
107: 
108: #else
109: ## LIVE SITE
110: 
111: 
112: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
113: <head>
114: 
115: <title>Pac-12 Online Awards#if ($title.length() > 0):$title #elseif ($page.title.length() > 0):$page.title#else #end </title>
116: 
117: <link REL="stylesheet" HREF="/info/tooltips.css" type="text/css">
118: <link REL="stylesheet" HREF="/info/base.css" type="text/css">
119: <link REL="stylesheet" HREF="/main.css" type="text/css">
120: $head
121: </head>
122: <body>
123: $wiki.tooltips
124: $website.requireRole()
125: 
126: <table class="gold" cellpadding="0" cellspacing="10" width="867px">
127: <tr><td><a href="http://pac-12.com//"><img src="/images/header-blue.jpg"></a></td>
128: <tr>
129: <td>
130: $body
131: $wiki.su
132: </td>
133: </tr>
134: <tr><td style="text-align: left"><a href="http://www.prestosports.com"><img src="/images/pslogo.png"></a></td></tr>
135: </table>
136: </body>
137: </html>
138: 
139: #end