Skip to content

Instantly share code, notes, and snippets.

@timgauthier
Created February 12, 2015 20:49
Show Gist options
  • Save timgauthier/529d43d95b9245bc7484 to your computer and use it in GitHub Desktop.
Save timgauthier/529d43d95b9245bc7484 to your computer and use it in GitHub Desktop.
if($file = $page->file('header.png')) {
echo ' hasimage" style="background-image:url(' . $file->url() . ');' ;
} else {
foreach($site->children()->visible() as $item) {
if ($page->isDescendantOf($item) && $file = $item->file('header.png')) {
echo ' hasimage" style="background-image:url(' . $file->url() . ');' ;
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment