template_dir = SMARTY_DIR_PC . 'templates/'; $smarty->compile_dir = SMARTY_DIR_PC . 'templates_c/'; $smarty->config_dir = SMARTY_DIR_PC . 'configs/'; // $smarty->cache_dir = SMARTY_DIR_PC . 'cache/'; $smarty->compile_check = true; $smarty->debugging = false; // DB接続 $clsDB = new DB; $clsDB->db_connect(); // サイトテキスト $clsSiteText = new SiteText; $clsSiteText->getSiteText(); // サイトテキストの配列を取得 // 0~9:固定テンプレート 10~:各ページコンテンツ $site_text = $clsSiteText->text_data; // テンプレート変数に格納 /* $smarty->assign("Title",$site_text[14]["title"]); $smarty->assign("Keywords",$site_text[14]["keywords"]); $smarty->assign("Description",$site_text[14]["description"]); */ $smarty->assign("Title","お問い合わせ - 株式会社内藤鍛造所のホームページ"); $smarty->assign("Keywords","株式会社内藤鍛造所,鍛造,自由鍛造,福岡,直方"); $smarty->assign("Description",""); $smarty->assign("Text_Header",$site_text[1]["contents"]); $smarty->assign("Text_Footer",$site_text[2]["contents"]); $smarty->assign("Text_Left_Menu",$site_text[3]["contents"]); $smarty->assign("Text_Right_Menu",$site_text[4]["contents"]); $smarty->assign("Text_Contents",$site_text[14]["contents"]); $smarty->display('contact.tpl'); ?>