홈페이지 제목 표시방법
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/* 초기화 */
|
/* 초기화 */
|
||||||
html {overflow-y:scroll}
|
html {overflow-y:scroll}
|
||||||
body {margin:0;padding:0;background:#f7f7f2;font-size:0.75em;font-family:"dotum"}
|
body {margin:0;padding:0 0 3px;background:#f7f7f2;font-size:0.75em;font-family:"dotum"}
|
||||||
html, body, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
|
html, body, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
|
||||||
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:"dotum"}
|
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:"dotum"}
|
||||||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
|
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
|
||||||
|
|||||||
@ -4,8 +4,10 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
|
|
||||||
$begin_time = get_microtime();
|
$begin_time = get_microtime();
|
||||||
|
|
||||||
if (!isset($g4['title']))
|
if (!isset($g4['title'])) // 페이지 제목이 없으면 환경설정의 홈페이지 제목 출력
|
||||||
$g4['title'] = $config['cf_title'];
|
$g4['title'] = $config['cf_title'];
|
||||||
|
else // 페이지 제목이 있으면 페이지 제목에 환경설정의 홈페이지 제목을 더해서 출력
|
||||||
|
$g4['title'] .= " : ".$config['cf_title'];
|
||||||
|
|
||||||
// 현재 접속자
|
// 현재 접속자
|
||||||
//$lo_location = get_text($g4[title]);
|
//$lo_location = get_text($g4[title]);
|
||||||
|
|||||||
Reference in New Issue
Block a user