Dzieki za pomoc prawie się udało ale chyba coś źle robie...
Zmienna globalna twig działa :)
Stworzyłem też Service i raczej z nim jest coś nie tak, jak wypisuje to co chcę na stronie {{ viewVisibleVarName.site.htmlBody }}
To jest błąd
Neither the property "site" nor one of the methods "site()", "getsite()"/"issite()" or "__call()" exist and have public access in class "App\LpBundle\Service\SeoInformation".
Kopiuj
<?php
namespace App\LpBundle\Service;
use App\LpBundle\Entity\SEO;
class SeoInformation
{
public function getGoogle()
{
$site=$this->getDoctrine()->getRepository('AppLpBundle:SEO')->findOneBy(array('id'=>1));
return array(
'site'=>$site
);
}
}