There was a problem with a Velocity script |
Page | sports/wxc/2024-25/bios/printer-decorator |
Error | Invocation of method 'include' in class com.prestosports.render.ContentEngineInvoker threw exception java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 176 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at 85xbgpq6jsoo372csports/wxc/2024-25/bios/printer-decorator[line 19, column 18] |
Page source: |
1: <!doctype html>
2: <html lang="en">
3: <head>
4: <meta charset="utf-8">
5: <title>${pageTitle} - Print Version</title>
6: <meta name="robots" content="NOINDEX" />
7: <meta name="viewport" content="width=device-width, initial-scale=1">
8:
9: ## Bootstrap and Other Dependencies
10: <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
11: <link rel="stylesheet" type="text/css" href="https://theme-assets.prestosports.com/theme-assets/generic/assets/css/global-reset.css" />
12: <link rel="stylesheet" type="text/css" href="https://theme-assets.prestosports.com/theme-assets/generic/assets/css/global-theme-reset-bs5.css"/>
13: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
14:
15: ## REQUIRED INCLUDE FOR CSS DEFINITIONS
16: $website.include("/inc-vars")
17:
18: ## PICK UP OPTIONS
19: $website.include("options")
20: #set ($options = $request.getAttribute("options"))
21:
22: #if($options.get("secondary_color_light") && $options.get("secondary_color_light") == true)
23: <script> $(function(){ $("html").addClass("secondary-color-light"); }); </script>
24: #end
25:
26: #if($options.get("primary_color_light") && $options.get("primary_color_light") == true)
27: <script> $(function(){ $("html").addClass("primary-color-light"); }); </script>
28: #end
29:
30: $!head
31:
32: <style>
33: .composite-cal .toggle-buttons-bar,
34: .composite-cal .cal-nav-right,
35: .composite-cal .cal-nav-left,
36: .composite-cal .subscribe_links { display:none !important }
37: .composite-cal .date-events { display:block !important }
38: .composite-cal .cal-day > .ratio::before { padding-top:0 }
39: .composite-cal .cal-day-cell { position:static; min-height:100px }
40: </style>
41: </head>
42: <body onload="#if($request.getAttribute("notPrint")) #else print() #end" class="printer-body">
43: $body
44: <!-- from: generic-bootstrap theme -->
45:
46: ## New Relic Real User Monitoring
47: $browser.newRelicTimingFooter
48: </body>
49: </html>
|