Changeset 5574
- Timestamp:
- 03/09/08 04:49:00 (10 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
interface/blog/entry.php (modified) (1 diff)
-
interface/blog/notice.php (modified) (1 diff)
-
interface/index.php (modified) (1 diff)
-
style/system.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/blog/entry.php
r5285 r5574 13 13 header('HTTP/1.1 404 Not Found'); 14 14 if (empty($skin->pageError)) { 15 dress('article_rep', '<div style="text-align:center;font-size:14px;font-weight:bold;padding-top:50px;margin:50px 0;color:#333;background:url(' . $service['path'] . '/image/warning.gif) no-repeat top center;">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view);15 dress('article_rep', '<div class="TCwarning" style="background-image:url(\'' . $service['path'] . '/image/warning.gif\');">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view); 16 16 } else { 17 17 dress('article_rep', NULL, $view); -
trunk/interface/blog/notice.php
r5285 r5574 15 15 header('HTTP/1.1 404 Not Found'); 16 16 if (empty($skin->pageError)) { 17 dress('article_rep', '<div style="text-align:center;font-size:14px;font-weight:bold;padding-top:50px;margin:50px 0;color:#333;background:url(' . $service['path'] . '/image/warning.gif) no-repeat top center;">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view);17 dress('article_rep', '<div class="TCwarning" style="background-image:url(\'' . $service['path'] . '/image/warning.gif\');">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view); 18 18 } else { 19 19 dress('article_rep', NULL, $view); -
trunk/interface/index.php
r4995 r5574 92 92 header('HTTP/1.1 404 Not Found'); 93 93 if (empty($skin->pageError)) { 94 dress('article_rep', '<div style="text-align:center;font-size:14px;font-weight:bold;padding-top:50px;margin:50px 0;color:#333;background:url(' . $service['path'] . '/image/warning.gif) no-repeat top center;">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view);94 dress('article_rep', '<div class="TCwarning" style="background-image:url(\'' . $service['path'] . '/image/warning.gif\');">' . _text('존재하지 않는 페이지입니다.') . '</div>', $view); 95 95 } else{ 96 96 dress('article_rep', NULL, $view); -
trunk/style/system.css
r5573 r5574 1 .TCwarning 2 { 3 background-repeat: no-repeat; 4 background-position: top center; 5 color: #333; 6 font-size: 14px; 7 font-weight: bold; 8 margin: 50px 0; 9 padding-top: 50px; 10 text-align: center; 11 }
