diff --git a/mobile/_common.php b/mobile/_common.php
new file mode 100644
index 000000000..360d08f21
--- /dev/null
+++ b/mobile/_common.php
@@ -0,0 +1,4 @@
+
+$g4_path = '..'; // common.php 의 상대 경로
+include_once($g4_path.'/common.php');
+?>
\ No newline at end of file
diff --git a/mobile/_head.php b/mobile/_head.php
new file mode 100644
index 000000000..025fc1670
--- /dev/null
+++ b/mobile/_head.php
@@ -0,0 +1,5 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+
+include_once($g4['path'].'/head.sub.php');
+?>
\ No newline at end of file
diff --git a/mobile/_tail.php b/mobile/_tail.php
new file mode 100644
index 000000000..efa214945
--- /dev/null
+++ b/mobile/_tail.php
@@ -0,0 +1,5 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+
+include_once($g4['path'].'/tail.sub.php');
+?>
\ No newline at end of file
diff --git a/mobile/index.php b/mobile/index.php
new file mode 100644
index 000000000..6a70f7ac8
--- /dev/null
+++ b/mobile/index.php
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
The default approach to styling content in jQuery Mobile is simple: Use a light hand. Our goal is to let the browser's native rendering take precedence; we add a bit of padding for more comfortable readability, and use the theming system to apply the font family and colors.
+
Taking a light hand with content styling gives designers and developers a clean slate to work with, instead of fighting against a lot of complex style overhead.
+
+
Default HTML markup styling
+
By default, jQuery Mobile themes use standard HTML styles and sizes for standard markup elements like headers, paragraph content, block quotes, anchor links, standard ordered, unordered and definition lists, and tables — as shown in the examples below:
+
+
+
H1 Heading
+
H2 Heading
+
H3 Heading
+
H4 Heading
+
H5 Heading
+
H6 Heading
+
+
This is a paragraph that contains strong, emphasized and linked text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.
+
+
How about some blockquote action with a cite
+
+
This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content. This is another paragraph of text so you can see how HTML markup works in content.
+
+
We add a few styles to tables and fieldsets to make them more legible, which are easily overridden with custom styles.
+
+
+
Unordered list item 1
+
Unordered list item 1
+
Unordered list item 1
+
+
+
+
Ordered list item 1
+
Ordered list item 1
+
Ordered list item 1
+
+
+
+
Definition term
+
I'm the definition text
+
Definition term
+
I'm the definition text
+
+
+
+
+
+
Travel Itinerary
+
+
+
Flight:
+
From:
+
To:
+
+
+
+
+
Total: 3 flights
+
+
+
+
+
JetBlue 983
+
Boston (BOS)
+
New York (JFK)
+
+
+
JetBlue 354
+
San Francisco (SFO)
+
Los Angeles (LAX)
+
+
+
JetBlue 465
+
New York (JFK)
+
Portland (PDX)
+
+
+
+
+
+
+
+
+
+
+include_once('./_tail.php');
+?>
\ No newline at end of file
diff --git a/mobile/skin/board/basic/_common.php b/mobile/skin/board/basic/_common.php
new file mode 100644
index 000000000..d60485262
--- /dev/null
+++ b/mobile/skin/board/basic/_common.php
@@ -0,0 +1,4 @@
+
+$g4_path = '../../..'; // common.php 의 상대 경로
+include_once($g4_path.'/common.php');
+?>
\ No newline at end of file
diff --git a/mobile/skin/board/basic/ajax.filter.php b/mobile/skin/board/basic/ajax.filter.php
new file mode 100644
index 000000000..0cbcedcf2
--- /dev/null
+++ b/mobile/skin/board/basic/ajax.filter.php
@@ -0,0 +1,72 @@
+
+include_once('./_common.php');
+
+if (!function_exists('convert_charset'))
+{
+ /*
+ -----------------------------------------------------------
+ Charset 을 변환하는 함수
+ -----------------------------------------------------------
+ iconv 함수가 있으면 iconv 로 변환하고
+ 없으면 mb_convert_encoding 함수를 사용한다.
+ 둘다 없으면 사용할 수 없다.
+ */
+ function convert_charset($from_charset, $to_charset, $str)
+ {
+
+ if( function_exists('iconv') )
+ return iconv($from_charset, $to_charset, $str);
+ elseif( function_exists('mb_convert_encoding') )
+ return mb_convert_encoding($str, $to_charset, $from_charset);
+ else
+ die("Not found 'iconv' or 'mbstring' library in server.");
+ }
+}
+
+header("Content-Type: text/html; charset={$g4['charset']}");
+
+$subject = strtolower($_POST['subject']);
+$content = strtolower(strip_tags($_POST['content']));
+
+//euc-kr 일 경우 $config['cf_filter'] 를 utf-8로 변환한다.
+if (strtolower($g4['charset']) == 'euc-kr')
+{
+ //$subject = convert_charset('utf-8', 'cp949', $subject);
+ //$content = convert_charset('utf-8', 'cp949', $content);
+ $config['cf_filter'] = convert_charset('cp949', 'utf-8', $config['cf_filter']);
+}
+
+//$filter = explode(",", strtolower(trim($config['cf_filter'])));
+// strtolower 에 의한 한글 변형으로 아래 코드로 대체 (곱슬최씨님이 알려 주셨습니다.)
+$filter = explode(",", trim($config['cf_filter']));
+for ($i=0; $i
\ No newline at end of file
diff --git a/mobile/skin/board/basic/img/btn_admin.gif b/mobile/skin/board/basic/img/btn_admin.gif
new file mode 100644
index 000000000..63a26ac55
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_admin.gif differ
diff --git a/mobile/skin/board/basic/img/btn_close.gif b/mobile/skin/board/basic/img/btn_close.gif
new file mode 100644
index 000000000..ce3d44e61
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_close.gif differ
diff --git a/mobile/skin/board/basic/img/btn_copy.gif b/mobile/skin/board/basic/img/btn_copy.gif
new file mode 100644
index 000000000..75ed779fa
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_copy.gif differ
diff --git a/mobile/skin/board/basic/img/btn_delete.gif b/mobile/skin/board/basic/img/btn_delete.gif
new file mode 100644
index 000000000..31fda2b46
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_delete.gif differ
diff --git a/mobile/skin/board/basic/img/btn_down.gif b/mobile/skin/board/basic/img/btn_down.gif
new file mode 100644
index 000000000..ac00c3291
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_down.gif differ
diff --git a/mobile/skin/board/basic/img/btn_file_add.gif b/mobile/skin/board/basic/img/btn_file_add.gif
new file mode 100644
index 000000000..eb597349f
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_file_add.gif differ
diff --git a/mobile/skin/board/basic/img/btn_file_minus.gif b/mobile/skin/board/basic/img/btn_file_minus.gif
new file mode 100644
index 000000000..7c2d7879d
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_file_minus.gif differ
diff --git a/mobile/skin/board/basic/img/btn_good.gif b/mobile/skin/board/basic/img/btn_good.gif
new file mode 100644
index 000000000..e43f18feb
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_good.gif differ
diff --git a/mobile/skin/board/basic/img/btn_init.gif b/mobile/skin/board/basic/img/btn_init.gif
new file mode 100644
index 000000000..4718f679c
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_init.gif differ
diff --git a/mobile/skin/board/basic/img/btn_list.gif b/mobile/skin/board/basic/img/btn_list.gif
new file mode 100644
index 000000000..821916156
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_list.gif differ
diff --git a/mobile/skin/board/basic/img/btn_list_search.gif b/mobile/skin/board/basic/img/btn_list_search.gif
new file mode 100644
index 000000000..f80239251
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_list_search.gif differ
diff --git a/mobile/skin/board/basic/img/btn_modify.gif b/mobile/skin/board/basic/img/btn_modify.gif
new file mode 100644
index 000000000..461170f59
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_modify.gif differ
diff --git a/mobile/skin/board/basic/img/btn_move.gif b/mobile/skin/board/basic/img/btn_move.gif
new file mode 100644
index 000000000..86aea4e80
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_move.gif differ
diff --git a/mobile/skin/board/basic/img/btn_my_menu.gif b/mobile/skin/board/basic/img/btn_my_menu.gif
new file mode 100644
index 000000000..e45812569
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_my_menu.gif differ
diff --git a/mobile/skin/board/basic/img/btn_next.gif b/mobile/skin/board/basic/img/btn_next.gif
new file mode 100644
index 000000000..9e3739fb6
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_next.gif differ
diff --git a/mobile/skin/board/basic/img/btn_prev.gif b/mobile/skin/board/basic/img/btn_prev.gif
new file mode 100644
index 000000000..a406e44d6
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_prev.gif differ
diff --git a/mobile/skin/board/basic/img/btn_reply.gif b/mobile/skin/board/basic/img/btn_reply.gif
new file mode 100644
index 000000000..03fe1bf18
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_reply.gif differ
diff --git a/mobile/skin/board/basic/img/btn_rss.gif b/mobile/skin/board/basic/img/btn_rss.gif
new file mode 100644
index 000000000..c7bad3cb1
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_rss.gif differ
diff --git a/mobile/skin/board/basic/img/btn_scrap.gif b/mobile/skin/board/basic/img/btn_scrap.gif
new file mode 100644
index 000000000..9f935bdd7
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_scrap.gif differ
diff --git a/mobile/skin/board/basic/img/btn_search.gif b/mobile/skin/board/basic/img/btn_search.gif
new file mode 100644
index 000000000..6bf8cbf6c
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_search.gif differ
diff --git a/mobile/skin/board/basic/img/btn_select_copy.gif b/mobile/skin/board/basic/img/btn_select_copy.gif
new file mode 100644
index 000000000..7c887d88c
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_select_copy.gif differ
diff --git a/mobile/skin/board/basic/img/btn_select_delete.gif b/mobile/skin/board/basic/img/btn_select_delete.gif
new file mode 100644
index 000000000..058d92bad
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_select_delete.gif differ
diff --git a/mobile/skin/board/basic/img/btn_select_move.gif b/mobile/skin/board/basic/img/btn_select_move.gif
new file mode 100644
index 000000000..1b31a390f
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_select_move.gif differ
diff --git a/mobile/skin/board/basic/img/btn_trackback.gif b/mobile/skin/board/basic/img/btn_trackback.gif
new file mode 100644
index 000000000..f0fcc061d
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_trackback.gif differ
diff --git a/mobile/skin/board/basic/img/btn_up.gif b/mobile/skin/board/basic/img/btn_up.gif
new file mode 100644
index 000000000..965bf7508
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_up.gif differ
diff --git a/mobile/skin/board/basic/img/btn_write.gif b/mobile/skin/board/basic/img/btn_write.gif
new file mode 100644
index 000000000..16830ced6
Binary files /dev/null and b/mobile/skin/board/basic/img/btn_write.gif differ
diff --git a/mobile/skin/board/basic/img/co_bg.gif b/mobile/skin/board/basic/img/co_bg.gif
new file mode 100644
index 000000000..ab5f9c5fc
Binary files /dev/null and b/mobile/skin/board/basic/img/co_bg.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_delete.gif b/mobile/skin/board/basic/img/co_btn_delete.gif
new file mode 100644
index 000000000..cd493f9ef
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_delete.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_down.gif b/mobile/skin/board/basic/img/co_btn_down.gif
new file mode 100644
index 000000000..ac00c3291
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_down.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_good.gif b/mobile/skin/board/basic/img/co_btn_good.gif
new file mode 100644
index 000000000..67bd00d95
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_good.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_good2.gif b/mobile/skin/board/basic/img/co_btn_good2.gif
new file mode 100644
index 000000000..f5c4b7dbc
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_good2.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_good_write.gif b/mobile/skin/board/basic/img/co_btn_good_write.gif
new file mode 100644
index 000000000..48753a3be
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_good_write.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_good_write2.gif b/mobile/skin/board/basic/img/co_btn_good_write2.gif
new file mode 100644
index 000000000..cc2c7a29a
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_good_write2.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_init.gif b/mobile/skin/board/basic/img/co_btn_init.gif
new file mode 100644
index 000000000..4718f679c
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_init.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_modify.gif b/mobile/skin/board/basic/img/co_btn_modify.gif
new file mode 100644
index 000000000..c3da0006a
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_modify.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_reply.gif b/mobile/skin/board/basic/img/co_btn_reply.gif
new file mode 100644
index 000000000..305a9b8c5
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_reply.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_up.gif b/mobile/skin/board/basic/img/co_btn_up.gif
new file mode 100644
index 000000000..965bf7508
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_up.gif differ
diff --git a/mobile/skin/board/basic/img/co_btn_write.gif b/mobile/skin/board/basic/img/co_btn_write.gif
new file mode 100644
index 000000000..e8f4ebb07
Binary files /dev/null and b/mobile/skin/board/basic/img/co_btn_write.gif differ
diff --git a/mobile/skin/board/basic/img/co_title_bg.gif b/mobile/skin/board/basic/img/co_title_bg.gif
new file mode 100644
index 000000000..b55597bcf
Binary files /dev/null and b/mobile/skin/board/basic/img/co_title_bg.gif differ
diff --git a/mobile/skin/board/basic/img/down.gif b/mobile/skin/board/basic/img/down.gif
new file mode 100644
index 000000000..4b0106720
Binary files /dev/null and b/mobile/skin/board/basic/img/down.gif differ
diff --git a/mobile/skin/board/basic/img/good_bg.gif b/mobile/skin/board/basic/img/good_bg.gif
new file mode 100644
index 000000000..a573e0c66
Binary files /dev/null and b/mobile/skin/board/basic/img/good_bg.gif differ
diff --git a/mobile/skin/board/basic/img/icon_date.gif b/mobile/skin/board/basic/img/icon_date.gif
new file mode 100644
index 000000000..0529b0ead
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_date.gif differ
diff --git a/mobile/skin/board/basic/img/icon_file.gif b/mobile/skin/board/basic/img/icon_file.gif
new file mode 100644
index 000000000..23a809a0b
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_file.gif differ
diff --git a/mobile/skin/board/basic/img/icon_good.gif b/mobile/skin/board/basic/img/icon_good.gif
new file mode 100644
index 000000000..4ec83e3a5
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_good.gif differ
diff --git a/mobile/skin/board/basic/img/icon_hot.gif b/mobile/skin/board/basic/img/icon_hot.gif
new file mode 100644
index 000000000..5d447f449
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_hot.gif differ
diff --git a/mobile/skin/board/basic/img/icon_link.gif b/mobile/skin/board/basic/img/icon_link.gif
new file mode 100644
index 000000000..c5a3f88f9
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_link.gif differ
diff --git a/mobile/skin/board/basic/img/icon_new.gif b/mobile/skin/board/basic/img/icon_new.gif
new file mode 100644
index 000000000..70a910ea3
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_new.gif differ
diff --git a/mobile/skin/board/basic/img/icon_nogood.gif b/mobile/skin/board/basic/img/icon_nogood.gif
new file mode 100644
index 000000000..07cd8fedd
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_nogood.gif differ
diff --git a/mobile/skin/board/basic/img/icon_notice.gif b/mobile/skin/board/basic/img/icon_notice.gif
new file mode 100644
index 000000000..a13bf40c7
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_notice.gif differ
diff --git a/mobile/skin/board/basic/img/icon_reply.gif b/mobile/skin/board/basic/img/icon_reply.gif
new file mode 100644
index 000000000..0eea0e31f
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_reply.gif differ
diff --git a/mobile/skin/board/basic/img/icon_secret.gif b/mobile/skin/board/basic/img/icon_secret.gif
new file mode 100644
index 000000000..eb3398151
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_secret.gif differ
diff --git a/mobile/skin/board/basic/img/icon_total.gif b/mobile/skin/board/basic/img/icon_total.gif
new file mode 100644
index 000000000..9464149a4
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_total.gif differ
diff --git a/mobile/skin/board/basic/img/icon_view.gif b/mobile/skin/board/basic/img/icon_view.gif
new file mode 100644
index 000000000..f3be6389c
Binary files /dev/null and b/mobile/skin/board/basic/img/icon_view.gif differ
diff --git a/mobile/skin/board/basic/img/noimage.gif b/mobile/skin/board/basic/img/noimage.gif
new file mode 100644
index 000000000..35d42e808
Binary files /dev/null and b/mobile/skin/board/basic/img/noimage.gif differ
diff --git a/mobile/skin/board/basic/img/page_begin.gif b/mobile/skin/board/basic/img/page_begin.gif
new file mode 100644
index 000000000..7103f2394
Binary files /dev/null and b/mobile/skin/board/basic/img/page_begin.gif differ
diff --git a/mobile/skin/board/basic/img/page_end.gif b/mobile/skin/board/basic/img/page_end.gif
new file mode 100644
index 000000000..348ad79cc
Binary files /dev/null and b/mobile/skin/board/basic/img/page_end.gif differ
diff --git a/mobile/skin/board/basic/img/page_next.gif b/mobile/skin/board/basic/img/page_next.gif
new file mode 100644
index 000000000..a99cdf50e
Binary files /dev/null and b/mobile/skin/board/basic/img/page_next.gif differ
diff --git a/mobile/skin/board/basic/img/page_prev.gif b/mobile/skin/board/basic/img/page_prev.gif
new file mode 100644
index 000000000..4817c78b7
Binary files /dev/null and b/mobile/skin/board/basic/img/page_prev.gif differ
diff --git a/mobile/skin/board/basic/img/page_search_next.gif b/mobile/skin/board/basic/img/page_search_next.gif
new file mode 100644
index 000000000..29b4b8910
Binary files /dev/null and b/mobile/skin/board/basic/img/page_search_next.gif differ
diff --git a/mobile/skin/board/basic/img/page_search_prev.gif b/mobile/skin/board/basic/img/page_search_prev.gif
new file mode 100644
index 000000000..5bb45414f
Binary files /dev/null and b/mobile/skin/board/basic/img/page_search_prev.gif differ
diff --git a/mobile/skin/board/basic/img/start.gif b/mobile/skin/board/basic/img/start.gif
new file mode 100644
index 000000000..aa6c89b3e
Binary files /dev/null and b/mobile/skin/board/basic/img/start.gif differ
diff --git a/mobile/skin/board/basic/img/title_bg.gif b/mobile/skin/board/basic/img/title_bg.gif
new file mode 100644
index 000000000..185d0beab
Binary files /dev/null and b/mobile/skin/board/basic/img/title_bg.gif differ
diff --git a/mobile/skin/board/basic/img/title_shadow.gif b/mobile/skin/board/basic/img/title_shadow.gif
new file mode 100644
index 000000000..e6e28f704
Binary files /dev/null and b/mobile/skin/board/basic/img/title_shadow.gif differ
diff --git a/mobile/skin/board/basic/img/up.gif b/mobile/skin/board/basic/img/up.gif
new file mode 100644
index 000000000..2831e376d
Binary files /dev/null and b/mobile/skin/board/basic/img/up.gif differ
diff --git a/mobile/skin/board/basic/img/view_dot.gif b/mobile/skin/board/basic/img/view_dot.gif
new file mode 100644
index 000000000..016175d51
Binary files /dev/null and b/mobile/skin/board/basic/img/view_dot.gif differ
diff --git a/mobile/skin/board/basic/list.skin.php b/mobile/skin/board/basic/list.skin.php
new file mode 100644
index 000000000..242664be5
--- /dev/null
+++ b/mobile/skin/board/basic/list.skin.php
@@ -0,0 +1,297 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+
+// 선택옵션으로 인해 셀합치기가 가변적으로 변함
+$colspan = 5;
+
+//if ($is_category) $colspan++;
+if ($is_checkbox) $colspan++;
+if ($is_good) $colspan++;
+if ($is_nogood) $colspan++;
+
+// 제목이 두줄로 표시되는 경우 이 코드를 사용해 보세요.
+// 제목
+?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Total =number_format($total_count)?>
+ if ($rss_href) { ?>}?>
+ if ($admin_href) { ?>}?>
+
\ No newline at end of file
diff --git a/mobile/skin/member/neo/register_update.skin.php b/mobile/skin/member/neo/register_update.skin.php
new file mode 100644
index 000000000..34fef072a
--- /dev/null
+++ b/mobile/skin/member/neo/register_update.skin.php
@@ -0,0 +1,5 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+
+// 자신만의 코드를 넣어주세요.
+?>
diff --git a/mobile/skin/member/neo/scrap.skin.php b/mobile/skin/member/neo/scrap.skin.php
new file mode 100644
index 000000000..5341f55d4
--- /dev/null
+++ b/mobile/skin/member/neo/scrap.skin.php
@@ -0,0 +1,47 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/member/neo/scrap_popin.skin.php b/mobile/skin/member/neo/scrap_popin.skin.php
new file mode 100644
index 000000000..662b48735
--- /dev/null
+++ b/mobile/skin/member/neo/scrap_popin.skin.php
@@ -0,0 +1,34 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
스크랩하기
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/member/neo/zip.skin.php b/mobile/skin/member/neo/zip.skin.php
new file mode 100644
index 000000000..e9068402f
--- /dev/null
+++ b/mobile/skin/member/neo/zip.skin.php
@@ -0,0 +1,63 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
=$g4['title']?>
+
+
diff --git a/mobile/skin/new/basic/img/dot_bg.gif b/mobile/skin/new/basic/img/dot_bg.gif
new file mode 100644
index 000000000..bd5f0a0d7
Binary files /dev/null and b/mobile/skin/new/basic/img/dot_bg.gif differ
diff --git a/mobile/skin/new/basic/img/list_top_01.gif b/mobile/skin/new/basic/img/list_top_01.gif
new file mode 100644
index 000000000..200b1e106
Binary files /dev/null and b/mobile/skin/new/basic/img/list_top_01.gif differ
diff --git a/mobile/skin/new/basic/img/list_top_02.gif b/mobile/skin/new/basic/img/list_top_02.gif
new file mode 100644
index 000000000..60cbe21c6
Binary files /dev/null and b/mobile/skin/new/basic/img/list_top_02.gif differ
diff --git a/mobile/skin/new/basic/img/list_top_03.gif b/mobile/skin/new/basic/img/list_top_03.gif
new file mode 100644
index 000000000..05b85066c
Binary files /dev/null and b/mobile/skin/new/basic/img/list_top_03.gif differ
diff --git a/mobile/skin/new/basic/img/list_top_04.gif b/mobile/skin/new/basic/img/list_top_04.gif
new file mode 100644
index 000000000..16a44b0a7
Binary files /dev/null and b/mobile/skin/new/basic/img/list_top_04.gif differ
diff --git a/mobile/skin/new/basic/new.skin.php b/mobile/skin/new/basic/new.skin.php
new file mode 100644
index 000000000..a0eef5908
--- /dev/null
+++ b/mobile/skin/new/basic/new.skin.php
@@ -0,0 +1,82 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/popular/basic/img/dot_bg.gif b/mobile/skin/popular/basic/img/dot_bg.gif
new file mode 100644
index 000000000..bd5f0a0d7
Binary files /dev/null and b/mobile/skin/popular/basic/img/dot_bg.gif differ
diff --git a/mobile/skin/popular/basic/img/icon.gif b/mobile/skin/popular/basic/img/icon.gif
new file mode 100644
index 000000000..49abe3199
Binary files /dev/null and b/mobile/skin/popular/basic/img/icon.gif differ
diff --git a/mobile/skin/popular/basic/img/visit_bg.gif b/mobile/skin/popular/basic/img/visit_bg.gif
new file mode 100644
index 000000000..bc8b17231
Binary files /dev/null and b/mobile/skin/popular/basic/img/visit_bg.gif differ
diff --git a/mobile/skin/popular/basic/popular.skin.php b/mobile/skin/popular/basic/popular.skin.php
new file mode 100644
index 000000000..bf7a8bde8
--- /dev/null
+++ b/mobile/skin/popular/basic/popular.skin.php
@@ -0,0 +1,9 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+인기검색어 :
+
+for ($i=0; $i{$list[$i][pp_word]} ";
+}
+?>
\ No newline at end of file
diff --git a/mobile/skin/popular/neo/img/dot_bg.gif b/mobile/skin/popular/neo/img/dot_bg.gif
new file mode 100644
index 000000000..bd5f0a0d7
Binary files /dev/null and b/mobile/skin/popular/neo/img/dot_bg.gif differ
diff --git a/mobile/skin/popular/neo/img/icon.gif b/mobile/skin/popular/neo/img/icon.gif
new file mode 100644
index 000000000..49abe3199
Binary files /dev/null and b/mobile/skin/popular/neo/img/icon.gif differ
diff --git a/mobile/skin/popular/neo/img/visit_bg.gif b/mobile/skin/popular/neo/img/visit_bg.gif
new file mode 100644
index 000000000..bc8b17231
Binary files /dev/null and b/mobile/skin/popular/neo/img/visit_bg.gif differ
diff --git a/mobile/skin/popular/neo/popular.skin.php b/mobile/skin/popular/neo/popular.skin.php
new file mode 100644
index 000000000..6cb0b7f17
--- /dev/null
+++ b/mobile/skin/popular/neo/popular.skin.php
@@ -0,0 +1,12 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/search/basic/search.skin.php b/mobile/skin/search/basic/search.skin.php
new file mode 100644
index 000000000..ba2aa8177
--- /dev/null
+++ b/mobile/skin/search/basic/search.skin.php
@@ -0,0 +1,120 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
\ No newline at end of file
diff --git a/mobile/skin/search/neo/search.skin.php b/mobile/skin/search/neo/search.skin.php
new file mode 100644
index 000000000..60da8219c
--- /dev/null
+++ b/mobile/skin/search/neo/search.skin.php
@@ -0,0 +1,133 @@
+
+if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
+?>
+
+
+
+
+
+ if ($stx) { ?>
+ if ($board_count) { ?>
+
+
=$stx?>에 대한 검색 결과입니다.
+
+
+
=$board_count?>개의 게시판
+
=number_format($total_count)?>개의 게시물
+
현재 =number_format($page)?>/=number_format($total_page)?> 페이지 열람 중
+
+
+
+ } ?>
+ } ?>
+
+
+ if ($stx) {
+ if ($board_count) {
+ ?>
+