title = "Sgf's article" url = "/news-media/press-articles/the-sgf/:slug" layout = "default" description = "Viewing a single blog post" is_hidden = 0 [blogPost blogDetail] slug = "{{ :slug }}" categoryPage = "sgf-articles/articles" == post ? $this->post->title : 'News Article'; $this['meta_title'] =$title; $this['title'] = $title; $this->page['title']= $title; $this['bannerImage'] = $this->themeUrl('assets/images/blog-banner.jpg'); if ($this->post && $this->post->featured_images->count() > 0) { $this['bannerImage'] = $this->post->featured_images->first()->getPath(); } } ?> ==