/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Loader
/Filesystem.php
if (!$this->isAbsolutePath($path)) {
$path = $this->rootPath.'/'.$path;
}
if (is_file($path.'/'.$shortname)) {
if (false !== $realpath = realpath($path.'/'.$shortname)) {
return $this->cache[$name] = $realpath;
}
return $this->cache[$name] = $path.'/'.$shortname;
}
}
$this->errorCache[$name] = sprintf('Unable to find template "%s" (looked into: %s).', $name, implode(', ', $this->paths[$namespace]));
if (!$throw) {
return false;
}
throw new Twig_Error_Loader($this->errorCache[$name]);
}
protected function parseName($name, $default = self::MAIN_NAMESPACE)
{
if (isset($name[0]) && '@' == $name[0]) {
if (false === $pos = strpos($name, '/')) {
throw new Twig_Error_Loader(sprintf('Malformed namespaced template name "%s" (expecting "@namespace/template_name").', $name));
}
$namespace = substr($name, 1, $pos - 1);
$shortname = substr($name, $pos + 1);
return array($namespace, $shortname);
}
return array($default, $name);
}
protected function normalizeName($name)
{
Arguments
"Unable to find template "templates/components/pagination.twig" (looked into: /code/wp-content/themes/gesso, /code/wp-content/themes/gesso/templates, ) in "author.twig" at line 47."
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Loader
/Filesystem.php
}
}
public function getSource($name)
{
@trigger_error(sprintf('Calling "getSource" on "%s" is deprecated since 1.27. Use getSourceContext() instead.', get_class($this)), E_USER_DEPRECATED);
return file_get_contents($this->findTemplate($name));
}
public function getSourceContext($name)
{
$path = $this->findTemplate($name);
return new Twig_Source(file_get_contents($path), $name, $path);
}
public function getCacheKey($name)
{
$path = $this->findTemplate($name);
$len = strlen($this->rootPath);
if (0 === strncmp($this->rootPath, $path, $len)) {
return substr($path, $len);
}
return $path;
}
public function exists($name)
{
$name = $this->normalizeName($name);
if (isset($this->cache[$name])) {
return true;
}
try {
return false !== $this->findTemplate($name, false);
} catch (Twig_Error_Loader $exception) {
@trigger_error(sprintf('In %s::findTemplate(), you must accept a second argument that when set to "false" returns "false" instead of throwing an exception. Not supporting this argument is deprecated since version 1.27.', get_class($this)), E_USER_DEPRECATED);
Arguments
"templates/components/pagination.twig"
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
/**
* Gets the template class associated with the given string.
*
* The generated template class is based on the following parameters:
*
* * The cache key for the given template;
* * The currently enabled extensions;
* * Whether the Twig C extension is available or not;
* * PHP version;
* * Twig version;
* * Options with what environment was created.
*
* @param string $name The name for which to calculate the template class name
* @param int|null $index The index if it is an embedded template
*
* @return string The template class name
*/
public function getTemplateClass($name, $index = null)
{
$key = $this->getLoader()->getCacheKey($name).$this->optionsHash;
return $this->templateClassPrefix.hash('sha256', $key).(null === $index ? '' : '_'.$index);
}
/**
* Gets the template class prefix.
*
* @return string The template class prefix
*
* @deprecated since 1.22 (to be removed in 2.0)
*/
public function getTemplateClassPrefix()
{
@trigger_error(sprintf('The %s method is deprecated since version 1.22 and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
return $this->templateClassPrefix;
}
/**
* Renders a template.
Arguments
"templates/components/pagination.twig"
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
/**
* Loads a template internal representation.
*
* This method is for internal use only and should never be called
* directly.
*
* @param string $name The template name
* @param int $index The index if it is an embedded template
*
* @return Twig_TemplateInterface A template instance representing the given template name
*
* @throws Twig_Error_Loader When the template cannot be found
* @throws Twig_Error_Runtime When a previously generated cache is corrupted
* @throws Twig_Error_Syntax When an error occurred during compilation
*
* @internal
*/
public function loadTemplate($name, $index = null)
{
$cls = $mainCls = $this->getTemplateClass($name);
if (null !== $index) {
$cls .= '_'.$index;
}
if (isset($this->loadedTemplates[$cls])) {
return $this->loadedTemplates[$cls];
}
if (!class_exists($cls, false)) {
if ($this->bcGetCacheFilename) {
$key = $this->getCacheFilename($name);
} else {
$key = $this->cache->generateKey($name, $mainCls);
}
if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) {
$this->cache->load($key);
}
if (!class_exists($cls, false)) {
Arguments
"templates/components/pagination.twig"
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
return array_unique($names);
}
protected function loadTemplate($template, $templateName = null, $line = null, $index = null)
{
try {
if (is_array($template)) {
return $this->env->resolveTemplate($template);
}
if ($template instanceof self) {
return $template;
}
if ($template instanceof Twig_TemplateWrapper) {
return $template;
}
return $this->env->loadTemplate($template, $index);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($templateName ? new Twig_Source('', $templateName) : $this->getSourceContext());
}
if ($e->getTemplateLine()) {
throw $e;
}
if (!$line) {
$e->guess();
} else {
$e->setTemplateLine($line);
}
throw $e;
}
}
/**
Arguments
"templates/components/pagination.twig"
null
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
} else {
$source = $loader->getSourceContext($name);
}
$content = $this->compileSource($source);
if ($this->bcWriteCacheFile) {
$this->writeCacheFile($key, $content);
} else {
$this->cache->write($key, $content);
$this->cache->load($key);
}
if (!class_exists($mainCls, false)) {
/* Last line of defense if either $this->bcWriteCacheFile was used,
* $this->cache is implemented as a no-op or we have a race condition
* where the cache was cleared between the above calls to write to and load from
* the cache.
*/
eval('?>'.$content);
}
}
if (!class_exists($cls, false)) {
throw new Twig_Error_Runtime(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source);
}
}
if (!$this->runtimeInitialized) {
$this->initRuntime();
}
return $this->loadedTemplates[$cls] = new $cls($this);
}
/**
* Creates a template from source.
*
* This method should not be used as a generic way to load templates.
*
Arguments
"templates/components/pagination.twig"
"author.twig"
47
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
if ($useBlocks && isset($blocks[$name])) {
$template = $blocks[$name][0];
$block = $blocks[$name][1];
} elseif (isset($this->blocks[$name])) {
$template = $this->blocks[$name][0];
$block = $this->blocks[$name][1];
} else {
$template = null;
$block = null;
}
// avoid RCEs when sandbox is enabled
if (null !== $template && !$template instanceof self) {
throw new LogicException('A block must be a method on a Twig_Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
// see Twig_Error_Loader
if (false === $e->getTemplateLine()) {
$e->setTemplateLine(-1);
$e->guess();
}
throw $e;
} catch (Exception $e) {
throw new Twig_Error_Runtime(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $template->getSourceContext(), $e);
}
} elseif (false !== $parent = $this->getParent($context)) {
$parent->displayBlock($name, $context, array_merge($this->blocks, $blocks), false);
} else {
@trigger_error(sprintf('Silent display of undefined block "%s" in template "%s" is deprecated since version 1.29 and will throw an exception in 2.0. Use the "block(\'%s\') is defined" expression to test for block existence.', $name, $this->getTemplateName(), $name), E_USER_DEPRECATED);
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:6 [
"html_head_container" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_html_head_container"
]
"page_header" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_page_header"
]
"skiplinks" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_skiplinks"
]
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
"footer" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_footer"
]
"javascripts" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_javascripts"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
} else {
$source = $loader->getSourceContext($name);
}
$content = $this->compileSource($source);
if ($this->bcWriteCacheFile) {
$this->writeCacheFile($key, $content);
} else {
$this->cache->write($key, $content);
$this->cache->load($key);
}
if (!class_exists($mainCls, false)) {
/* Last line of defense if either $this->bcWriteCacheFile was used,
* $this->cache is implemented as a no-op or we have a race condition
* where the cache was cleared between the above calls to write to and load from
* the cache.
*/
eval('?>'.$content);
}
}
if (!class_exists($cls, false)) {
throw new Twig_Error_Runtime(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source);
}
}
if (!$this->runtimeInitialized) {
$this->initRuntime();
}
return $this->loadedTemplates[$cls] = new $cls($this);
}
/**
* Creates a template from source.
*
* This method should not be used as a generic way to load templates.
*
Arguments
"content"
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:6 [
"html_head_container" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_html_head_container"
]
"page_header" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_page_header"
]
"skiplinks" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_skiplinks"
]
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
"footer" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_footer"
]
"javascripts" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_javascripts"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
}
return ob_get_clean();
}
protected function displayWithErrorHandling(array $context, array $blocks = array())
{
try {
$this->doDisplay($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
// see Twig_Error_Loader
if (false === $e->getTemplateLine()) {
$e->setTemplateLine(-1);
$e->guess();
}
throw $e;
} catch (Exception $e) {
throw new Twig_Error_Runtime(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $this->getSourceContext(), $e);
}
}
/**
* Auto-generated method to display the template with the given context.
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:6 [
"html_head_container" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_html_head_container"
]
"page_header" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_page_header"
]
"skiplinks" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_skiplinks"
]
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
"footer" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_footer"
]
"javascripts" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_javascripts"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
}
/**
* Returns all blocks.
*
* This method is for internal use only and should never be called
* directly.
*
* @return array An array of blocks
*
* @internal
*/
public function getBlocks()
{
return $this->blocks;
}
public function display(array $context, array $blocks = array())
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
ob_start();
try {
$this->display($context);
} catch (Exception $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:6 [
"html_head_container" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_html_head_container"
]
"page_header" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_page_header"
]
"skiplinks" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_skiplinks"
]
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
"footer" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_footer"
]
"javascripts" => array:2 [
0 => __TwigTemplate_43e26bf21e75ebb3828062692407a90078161cf319b2e94560ee6d09e91393ea {#1}
1 => "block_javascripts"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
} else {
$source = $loader->getSourceContext($name);
}
$content = $this->compileSource($source);
if ($this->bcWriteCacheFile) {
$this->writeCacheFile($key, $content);
} else {
$this->cache->write($key, $content);
$this->cache->load($key);
}
if (!class_exists($mainCls, false)) {
/* Last line of defense if either $this->bcWriteCacheFile was used,
* $this->cache is implemented as a no-op or we have a race condition
* where the cache was cleared between the above calls to write to and load from
* the cache.
*/
eval('?>'.$content);
}
}
if (!class_exists($cls, false)) {
throw new Twig_Error_Runtime(sprintf('Failed to load Twig template "%s", index "%s": cache is corrupted.', $name, $index), -1, $source);
}
}
if (!$this->runtimeInitialized) {
$this->initRuntime();
}
return $this->loadedTemplates[$cls] = new $cls($this);
}
/**
* Creates a template from source.
*
* This method should not be used as a generic way to load templates.
*
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:1 [
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
}
return ob_get_clean();
}
protected function displayWithErrorHandling(array $context, array $blocks = array())
{
try {
$this->doDisplay($context, $blocks);
} catch (Twig_Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
// this is mostly useful for Twig_Error_Loader exceptions
// see Twig_Error_Loader
if (false === $e->getTemplateLine()) {
$e->setTemplateLine(-1);
$e->guess();
}
throw $e;
} catch (Exception $e) {
throw new Twig_Error_Runtime(sprintf('An exception has been thrown during the rendering of a template ("%s").', $e->getMessage()), -1, $this->getSourceContext(), $e);
}
}
/**
* Auto-generated method to display the template with the given context.
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:1 [
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
}
/**
* Returns all blocks.
*
* This method is for internal use only and should never be called
* directly.
*
* @return array An array of blocks
*
* @internal
*/
public function getBlocks()
{
return $this->blocks;
}
public function display(array $context, array $blocks = array())
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
ob_start();
try {
$this->display($context);
} catch (Exception $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
array:1 [
"content" => array:2 [
0 => __TwigTemplate_92326ef45ff835b6252abb21555146429b0afdaa9f7a54d8a0bf9a6914abff8d {}
1 => "block_content"
]
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Template.php
* @return array An array of blocks
*
* @internal
*/
public function getBlocks()
{
return $this->blocks;
}
public function display(array $context, array $blocks = array())
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
ob_start();
try {
$this->display($context);
} catch (Exception $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
} catch (Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
throw $e;
}
return ob_get_clean();
}
protected function displayWithErrorHandling(array $context, array $blocks = array())
{
try {
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
/code
/wp-content
/plugins
/timber-library
/vendor
/twig
/twig
/lib
/Twig
/Environment.php
@trigger_error(sprintf('The %s method is deprecated since version 1.22 and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
return $this->templateClassPrefix;
}
/**
* Renders a template.
*
* @param string $name The template name
* @param array $context An array of parameters to pass to the template
*
* @return string The rendered template
*
* @throws Twig_Error_Loader When the template cannot be found
* @throws Twig_Error_Syntax When an error occurred during compilation
* @throws Twig_Error_Runtime When an error occurred during rendering
*/
public function render($name, array $context = array())
{
return $this->loadTemplate($name)->render($context);
}
/**
* Displays a template.
*
* @param string $name The template name
* @param array $context An array of parameters to pass to the template
*
* @throws Twig_Error_Loader When the template cannot be found
* @throws Twig_Error_Syntax When an error occurred during compilation
* @throws Twig_Error_Runtime When an error occurred during rendering
*/
public function display($name, array $context = array())
{
$this->loadTemplate($name)->display($context);
}
/**
* Loads a template.
*
Arguments
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
/code
/wp-content
/plugins
/timber-library
/lib
/Loader.php
}
$key = null;
$output = false;
if ( false !== $expires ) {
ksort($data);
$key = md5($file.json_encode($data));
$output = $this->get_cache($key, self::CACHEGROUP, $cache_mode);
}
if ( false === $output || null === $output ) {
$twig = $this->get_twig();
if ( strlen($file) ) {
$loader = $this->get_loader();
$result = $loader->getCacheKey($file);
do_action('timber_loader_render_file', $result);
}
$data = apply_filters('timber_loader_render_data', $data);
$data = apply_filters('timber/loader/render_data', $data, $file);
$output = $twig->render($file, $data);
}
if ( false !== $output && false !== $expires && null !== $key ) {
$this->delete_cache();
$this->set_cache($key, $output, self::CACHEGROUP, $expires, $cache_mode);
}
$output = apply_filters('timber_output', $output);
return apply_filters('timber/output', $output, $data, $file);
}
protected function delete_cache() {
Cleaner::delete_transients();
}
/**
* Get first existing template.
*
* @param array|string $templates Name(s) of the Twig template(s) to choose from.
* @return string|bool Name of chosen template, otherwise false.
*/
Arguments
"author.twig"
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
/code
/wp-content
/plugins
/timber-library
/lib
/Timber.php
if ( $via_render ) {
$file = apply_filters('timber_render_file', $file);
} else {
$file = apply_filters('timber_compile_file', $file);
}
$output = false;
if ($file !== false) {
if ( is_null($data) ) {
$data = array();
}
if ( $via_render ) {
$data = apply_filters('timber_render_data', $data);
} else {
$data = apply_filters('timber_compile_data', $data);
}
$output = $loader->render($file, $data, $expires, $cache_mode);
}
do_action('timber_compile_done');
return $output;
}
/**
* Compile a string.
*
* @api
* @example
* ```php
* $data = array(
* 'username' => 'Jane Doe',
* );
*
* $welcome = Timber::compile_string( 'Hi {{ username }}, I’m a string with a custom Twig variable', $data );
* ```
* @param string $string A string with Twig variables.
* @param array $data Optional. An array of data to use in Twig template.
Arguments
"author.twig"
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
false
"default"
/code
/wp-content
/plugins
/timber-library
/lib
/Timber.php
$twig = $dummy_loader->get_twig();
$template = $twig->createTemplate($string);
return $template->render($data);
}
/**
* Fetch function.
*
* @api
* @param array|string $filenames Name of the Twig file to render. If this is an array of files, Timber will
* render the first file that exists.
* @param array $data Optional. An array of data to use in Twig template.
* @param bool|int $expires Optional. In seconds. Use false to disable cache altogether. When passed an
* array, the first value is used for non-logged in visitors, the second for users.
* Default false.
* @param string $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
* @return bool|string The returned output.
*/
public static function fetch( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
$output = self::compile($filenames, $data, $expires, $cache_mode, true);
$output = apply_filters('timber_compile_result', $output);
return $output;
}
/**
* Render function.
*
* Passes data to a Twig file and echoes the output.
*
* @api
* @example
* ```php
* $context = Timber::context();
*
* Timber::render( 'index.twig', $context );
* ```
* @param array|string $filenames Name of the Twig file to render. If this is an array of files, Timber will
* render the first file that exists.
* @param array $data Optional. An array of data to use in Twig template.
* @param bool|int $expires Optional. In seconds. Use false to disable cache altogether. When passed an
Arguments
array:3 [
0 => "author.twig"
1 => "archive.twig"
2 => "search.twig"
]
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
false
"default"
true
/code
/wp-content
/plugins
/timber-library
/lib
/Timber.php
* Passes data to a Twig file and echoes the output.
*
* @api
* @example
* ```php
* $context = Timber::context();
*
* Timber::render( 'index.twig', $context );
* ```
* @param array|string $filenames Name of the Twig file to render. If this is an array of files, Timber will
* render the first file that exists.
* @param array $data Optional. An array of data to use in Twig template.
* @param bool|int $expires Optional. In seconds. Use false to disable cache altogether. When passed an
* array, the first value is used for non-logged in visitors, the second for users.
* Default false.
* @param string $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
* @return bool|string The echoed output.
*/
public static function render( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
$output = self::fetch($filenames, $data, $expires, $cache_mode);
echo $output;
return $output;
}
/**
* Render a string with Twig variables.
*
* @api
* @example
* ```php
* $data = array(
* 'username' => 'Jane Doe',
* );
*
* Timber::render_string( 'Hi {{ username }}, I’m a string with a custom Twig variable', $data );
* ```
* @param string $string A string with Twig variables.
* @param array $data An array of data to use in Twig template.
* @return bool|string
*/
Arguments
array:3 [
0 => "author.twig"
1 => "archive.twig"
2 => "search.twig"
]
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
false
"default"
/code
/wp-content
/themes
/gesso
/author.php
/**
* The template for displaying Author Archive pages
*
* Methods for TimberHelper can be found in the /lib sub-directory
*
* @package WordPress
* @subpackage Timber
* @since Timber 0.1
*/
global $wp_query;
$context = Timber::get_context();
$context['posts'] = Timber::get_posts();
$context['pagination'] = Timber::get_pagination();
if ( isset( $wp_query->query_vars['author'] ) ) {
$author = new TimberUser( $wp_query->query_vars['author'] );
$context['author'] = $author;
$context['title'] = __('Author Archives: ', 'gesso') . $author->name();
}
Timber::render( array( 'author.twig', 'archive.twig', 'search.twig' ), $context );
Arguments
array:3 [
0 => "author.twig"
1 => "archive.twig"
2 => "search.twig"
]
array:22 [
"http_host" => "https://700milliongallons.org"
"wp_title" => "dev, Author at 700MillionGallons"
"body_class" => "archive author author-dev author-41 tribe-no-js gesso"
"site" => StarterSite {}
"request" => Request {}
"user" => false
"theme" => Theme {}
"posts" => array:1 [
0 => Post {}
]
"wp_head" => FunctionWrapper {}
"wp_footer" => FunctionWrapper {}
"options" => array:8 [
"global_contractor_page" => "https://700milliongallons.org/rainwise/find-a-contractor/"
"global_disclaimer" => array:2 [
"title" => "Disclaimer"
"content" => "The City of Seattle and King County are not endorsing any specific business / contractor / vendor or making any representation or warranty regarding their qualifications, products, or workmanship. The City of Seattle and King County disclaim any liability that may be alleged to arise from the work of any business / contractor / vendor on a customer project. The City of Seattle and King County offer this rebate to completed projects and do not offer warranties or guaranties. It is up to the property owner to ensure that the project is maintained correctly and operating effectively."
]
"global_footer_credit_text" => "700milliongallons.org is a joint effort by SPU and King County WTD."
"global_footer_menu_repeater" => array:3 [
0 => array:2 [
"section_logo" => array:24 [
"ID" => 2137
"id" => 2137
"title" => "rw-262"
"filename" => "rw-262.png"
"filesize" => 28343
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"link" => "https://700milliongallons.org/rw-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "rw-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:43"
"modified" => "2021-01-08 23:25:43"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 163
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-250x156.png"
"medium-width" => 250
"medium-height" => 156
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"medium_large-width" => 262
"medium_large-height" => 163
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"large-width" => 262
"large-height" => 163
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 163
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 163
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/rw-262-120x75.png"
"small-width" => 120
"small-height" => 75
]
]
"section_links" => array:8 [
0 => array:2 [
"link" => array:3 [
"title" => "RainWise on Facebook"
"url" => "https://www.facebook.com/SeattleRainWise/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "RainWise on Instagram"
"url" => "https://www.instagram.com/rainwiseseattle"
"target" => "_blank"
]
"icon" => "instagram"
]
2 => array:2 [
"link" => array:3 [
"title" => "RainWise on YouTube"
"url" => "https://youtube.com/playlist?list=PLO5EstoEwik2vz13gWjBqXNiKiakkmI0l"
"target" => "_blank"
]
"icon" => "youtube"
]
3 => array:2 [
"link" => array:3 [
"title" => "Send RainWise an Email"
"url" => "mailto:rainwise@seattle.gov"
"target" => "_blank"
]
"icon" => "email"
]
4 => array:2 [
"link" => array:3 [
"title" => "Contact Us"
"url" => "/rainwise/contact-us/"
"target" => ""
]
"icon" => "leaf"
]
5 => array:2 [
"link" => array:3 [
"title" => "Contractor Resources"
"url" => "/rainwise/contractor-resources/"
"target" => ""
]
"icon" => "blank"
]
6 => array:2 [
"link" => array:3 [
"title" => "Find a Contractor"
"url" => "/rainwise/find-a-contractor/"
"target" => ""
]
"icon" => "blank"
]
7 => array:2 [
"link" => array:3 [
"title" => "Events"
"url" => "/events/"
"target" => ""
]
"icon" => "blank"
]
]
]
1 => array:2 [
"section_logo" => array:24 [
"ID" => 2140
"id" => 2140
"title" => "SPU_3line_blue-black_print"
"filename" => "SPU_3line_blue-black_print-1.png"
"filesize" => 23580
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"link" => "https://700milliongallons.org/spu_3line_blue-black_print-2/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "spu_3line_blue-black_print-2"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:37:49"
"modified" => "2021-01-08 23:37:49"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 92
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-150x92.png"
"thumbnail-width" => 150
"thumbnail-height" => 92
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-250x88.png"
"medium-width" => 250
"medium-height" => 88
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"medium_large-width" => 262
"medium_large-height" => 92
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"large-width" => 262
"large-height" => 92
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"1536x1536-width" => 262
"1536x1536-height" => 92
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1.png"
"2048x2048-width" => 262
"2048x2048-height" => 92
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/SPU_3line_blue-black_print-1-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"section_links" => array:3 [
0 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Facebook"
"url" => "https://www.facebook.com/SeattlePublicUtilities/"
"target" => "_blank"
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on Twitter"
"url" => "https://twitter.com/SeattleSPU"
"target" => "_blank"
]
"icon" => "twitter"
]
2 => array:2 [
"link" => array:3 [
"title" => "Seattle Public Utilities on YouTube"
"url" => "https://www.youtube.com/user/SeattleUtilities"
"target" => "_blank"
]
"icon" => "youtube"
]
]
]
2 => array:2 [
"section_logo" => array:24 [
"ID" => 2136
"id" => 2136
"title" => "kcwtd-262"
"filename" => "kcwtd-262.png"
"filesize" => 16692
"url" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"link" => "https://700milliongallons.org/kcwtd-262/"
"alt" => ""
"author" => "41"
"description" => ""
"caption" => ""
"name" => "kcwtd-262"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-01-08 23:25:40"
"modified" => "2021-01-08 23:25:40"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 262
"height" => 80
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-150x80.png"
"thumbnail-width" => 150
"thumbnail-height" => 80
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-250x76.png"
"medium-width" => 250
"medium-height" => 76
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"medium_large-width" => 262
"medium_large-height" => 80
"large" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"large-width" => 262
"large-height" => 80
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"1536x1536-width" => 262
"1536x1536-height" => 80
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262.png"
"2048x2048-width" => 262
"2048x2048-height" => 80
"small" => "https://700milliongallons.org/wp-content/uploads/2021/01/kcwtd-262-120x37.png"
"small-width" => 120
"small-height" => 37
]
]
"section_links" => array:2 [
0 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Facebook"
"url" => "https://www.facebook.com/kingcountywtd/"
"target" => ""
]
"icon" => "facebook"
]
1 => array:2 [
"link" => array:3 [
"title" => "King County WTD on Twitter"
"url" => "https://twitter.com/KingCountyWA"
"target" => "_blank"
]
"icon" => "twitter"
]
]
]
]
"global_footer_site_logo" => array:24 [
"ID" => 2452
"id" => 2452
"title" => "700MG Web Logo"
"filename" => "700MG-Web-Logo.png"
"filesize" => 28413
"url" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"link" => "https://700milliongallons.org/700mg-web-logo/"
"alt" => ""
"author" => "16"
"description" => ""
"caption" => ""
"name" => "700mg-web-logo"
"status" => "inherit"
"uploaded_to" => 0
"date" => "2021-02-23 22:27:55"
"modified" => "2021-02-23 22:27:55"
"menu_order" => 0
"mime_type" => "image/png"
"type" => "image"
"subtype" => "png"
"icon" => "https://700milliongallons.org/wp-includes/images/media/default.png"
"width" => 1275
"height" => 442
"sizes" => array:21 [
"thumbnail" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-150x150.png"
"thumbnail-width" => 150
"thumbnail-height" => 150
"medium" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-250x87.png"
"medium-width" => 250
"medium-height" => 87
"medium_large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-768x266.png"
"medium_large-width" => 768
"medium_large-height" => 266
"large" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-700x243.png"
"large-width" => 700
"large-height" => 243
"1536x1536" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"1536x1536-width" => 1275
"1536x1536-height" => 442
"2048x2048" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"2048x2048-width" => 1275
"2048x2048-height" => 442
"small" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo-120x42.png"
"small-width" => 120
"small-height" => 42
]
]
"global_header_image" => "https://700milliongallons.org/wp-content/uploads/2021/02/700MG-Web-Logo.png"
"global_header_phone" => ""
"global_solutions_page" => "https://700milliongallons.org/solutions/"
]
"foo" => "bar"
"stuff" => "I am a value set in your functions.php file"
"notes" => "These values are available everytime you call Timber::get_context();"
"primary_menu" => Menu {}
"secondary_menu" => Menu {}
"footer_menu" => Menu {}
"menu" => Menu {}
"current_year" => "2024"
"pagination" => array:5 [
"current" => 1
"total" => 1.0
"pages" => []
"next" => null
"prev" => ""
]
"author" => User {}
"title" => "Author Archives: dev"
]
/code
/wp-includes
/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
Arguments
"/code/wp-content/themes/gesso/author.php"
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
Arguments
"/code/wp-includes/template-loader.php"
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
Arguments
"/code/wp-blog-header.php"