<?php /** * 左にメニュー枠があるレイアウト * Created on 2005/04/03 * @package templates.manager */ // デフォルト空白 if (!isset($layout_pages["middle"])) { $layout_pages["middle"] = "blank.inc"; } ?> <?php /** * 共通ヘッダー部分ファイル * $RCSfile: winpopup_layout.inc,v $ * @package templates.manager */ @header('Content-Language: utf-8'); @header('Content-Type: text/html;charset=UTF-8'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8" /> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <meta http-equiv="Pragma" content="no-cache"/> <meta http-equiv="Cache-Control" content="no-cache"/> <meta http-equiv="Expires" content="-1"/> <meta http-equiv="Pragma" content="no-cache"/> <title><?=SERVICE_NAME ?>管理</title> <link href="css/manager_topmenutopsub_design.css" rel="stylesheet" type="text/css" /> <link href="css/manager_topmenutopsub_layout.css" rel="stylesheet" type="text/css" /> </head> <body style="background: #ffffff"> <div id="main_area"> <? // フッター require(MANAGER_TEMPLATE_DIR_PATH . "/" . $layout_pages["middle"]); ?> </div> </body> </html>