title = "Blog"
url = "/blog"
layout = "master"
is_hidden = 0
contentType = "html"
force_show = 0
==
where("status", 1)->where("lang", $lang)->where("category", "blog")->orderBy("id", "desc")->get();
$this->page->turkishlink = "/tr/blog/";
$this->page->englishlink = "/en/blog/";
if($this['getlang'] == 'en'){
$this->page->meta_title = "Blog - Villa Yapı Prefabrik";
$this->page->meta_description = "All Information About Prefabricated House - Steel Structures is on our Villa Yapı Blog page! Visit our blog, learn about prefabricated-steel structures!";
$this->page->canonical = "https://villayapi.com/en/blog/";
}else{
$this->page->meta_title = "Blog - Villa Yapı Prefabrik";
$this->page->meta_description = "Prefabrik ev - çelik yapılar ile ilgili tüm bilgiler Villa Yapı blog sayfamızda! Blogumuzu ziyaret edin, prefabrik- çelik yapılar hakkında bilgi sahibi olun!";
$this->page->canonical = "https://villayapi.com/tr/blog/";
}
}
?>
==