1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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>