This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Template Metrics: | |
cumulative average maximum cache percent cached total | |
duration duration duration potential cached count count template | |
---------- -------- -------- --------- ------- ------ ----- -------- | |
13m59.344464552s 468.122958ms 969.649539ms 0 0 0 1793 people/single.html | |
11m22.871958486s 657.239613ms 4.766322206s 0 0 0 1039 productions/single.html | |
10m8.02232355s 20.06277ms 209.203761ms 13 0 0 30306 partials/findPerson.html | |
13.268277216s 323.616517ms 430.542743ms 0 0 0 41 productions/past.html | |
10.978905134s 10.576979ms 47.014916ms 0 0 0 1038 _default/production-list.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* COMMENT: Put "proxima" in the Custom Class Attribute of the element on OptinMonster that you want to appear in Proxima Nova font. */ | |
html div#om-{{id}} .proxima * { | |
font-family: proxima-nova, sans-serif !important; font-weight: 800; font-style: normal; | |
} | |
html div#om-{{id}} .x-btn, html div#om-{{id}} .button, html div#om-{{id}} [type="submit"] { | |
text-shadow:none !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat: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"); | |
:root { | |
--WJCT-primary: #006bb6; | |
--WJCT-secondary: #40c4ff; | |
--WJCT-tertiary: #2c3e50; | |
--WJCT-light-text: white; | |
--WJCT-red: #d50000; | |
--bodyFont: "Montserrat", sans-serif; | |
--primaryFont: "Montserrat", sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
const daysOfWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; | |
async function getShowSchedule() { | |
let scheduleDiv = document.querySelector(".RadioShowPage-mediaSchedule"); | |
if (scheduleDiv) return; | |
const programName = document.querySelector(".RadioShowPage-headline").textContent.trim(); | |
try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get the UTMs with Javascript and pass them to the WPForm on the page | |
function getQueryParams(qs) { | |
qs = qs.split('+').join(' '); | |
var params = {}, | |
tokens, re = /[?&]?([^=]+)=([^&]*)/g; | |
while (tokens = re.exec(qs)) { | |
params[decodeURIComponent(tokens[1])] = decodeURIComponent(tokens[2]); | |
} | |
return params; | |
} |