0 Votes

Changes for page 메인

Last modified by Kay Joo on 2026/06/01 13:16

From version 44.1
edited by Kay Joo
on 2026/05/15 20:29
Change comment: There is no comment for this version
To version 20.1
edited by 지안 이
on 2026/05/04 08:43
Change comment: Layout improved: Multi-column design with WBO

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -Main
1 +장수클럽
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.stone
1 +XWiki.easyone
Content
... ... @@ -1,94 +1,271 @@
1 -= 🌸 JANGSU CLUB =
1 +<!DOCTYPE html>
2 +<html xmlns="http://www.w3.org/1999/xhtml" lang="ko-KR" xml:lang="ko-KR">
3 +<head>
4 +<style>
5 +/* XWiki 기본 UI 요소 숨기기 */
6 +.xwiki-last-modified, .xwiki-export, .xwiki-info, .xwiki-edit-buttons, .xwiki-page-meta {
7 + display: none !important;
8 +}
9 +.xwiki-content {
10 + max-width: 1200px;
11 + margin: 0 auto;
12 +}
13 +/* 상단 소개 섹션 */
14 +.site-intro {
15 + text-align: center;
16 + padding: 2rem 1rem;
17 + background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
18 + border-radius: 24px;
19 + margin-bottom: 2rem;
20 + border: 1px solid #e3ddd5;
21 +}
22 +.site-intro h1 {
23 + font-size: 2.5rem;
24 + color: #1f2f36;
25 + margin-bottom: 0.5rem;
26 +}
27 +.site-intro p {
28 + font-size: 1.2rem;
29 + color: #5f6b72;
30 + margin: 0;
31 +}
32 +/* 퀵 링크 및 CTA 버튼 */
33 +.cta-container {
34 + display: flex;
35 + gap: 1rem;
36 + justify-content: center;
37 + margin: 2rem 0;
38 + flex-wrap: wrap;
39 +}
40 +.cta-button {
41 + padding: 0.8rem 1.5rem;
42 + border-radius: 12px;
43 + text-decoration: none;
44 + font-weight: 700;
45 + transition: all 0.2s;
46 + text-align: center;
47 + min-width: 160px;
48 +}
49 +.cta-primary {
50 + background: #0f766e;
51 + color: white !important;
52 +}
53 +.cta-secondary {
54 + background: white;
55 + color: #0f766e !important;
56 + border: 2px solid #0f766e;
57 +}
58 +.cta-button:hover {
59 + transform: translateY(-3px);
60 + box-shadow: 0 4px 12px rgba(0,0,0,0.1);
61 +}
2 2  
3 -== 소중한 인연, 함께 걷는 시간 ==
63 +/* 메인 다단 레이아웃 */
64 +.main-layout-container {
65 + display: flex;
66 + gap: 2rem;
67 + margin-bottom: 3rem;
68 + align-items: stretch;
69 +}
70 +.info-column {
71 + flex: 1;
72 + display: flex;
73 + flex-direction: column;
74 + gap: 1.5rem;
75 +}
76 +.wbo-column {
77 + flex: 1;
78 + display: flex;
79 + flex-direction: column;
80 +}
4 4  
5 -장수클럽은 단순한 모임을 넘어, 서로의 삶을 응원하고 온기를 나누는 우리들의 작은 숲입니다.
82 +/* 카드 스타일 */
83 +.dashboard-card {
84 + background: white;
85 + border: 1px solid #ebe4da;
86 + border-radius: 20px;
87 + padding: 1.5rem;
88 + box-shadow: 0 4px 15px rgba(0,0,0,0.05);
89 + height: fit-content;
90 +}
91 +.dashboard-card h3 {
92 + margin-top: 0;
93 + color: #1f2f36;
94 + border-bottom: 2px solid #f0ede9;
95 + padding-bottom: 0.5rem;
96 + display: flex;
97 + align-items: center;
98 + gap: 0.5rem;
99 + font-size: 1.2rem;
100 +}
101 +.news-item, .event-item, .link-item {
102 + display: flex;
103 + justify-content: space-between;
104 + padding: 0.7rem 0;
105 + border-bottom: 1px solid #f8f5ef;
106 + font-size: 0.95rem;
107 +}
108 +.news-item:last-child, .event-item:last-child, .link-item:last-child {
109 + border-bottom: none;
110 +}
111 +.date-tag {
112 + font-size: 0.8rem;
113 + color: #8a7b69;
114 + margin-right: 0.5rem;
115 + font-weight: bold;
116 +}
117 +.link-item a {
118 + text-decoration: none;
119 + color: #0f766e;
120 + font-weight: 600;
121 +}
122 +.link-item span {
123 + color: #8a7b69;
124 + font-size: 0.85rem;
125 + text-align: right;
126 + max-width: 60%;
127 +}
6 6  
7 -----
129 +/* WBO 화이트보드 스타일 */
130 +.wbo-container {
131 + position: relative;
132 + height: 100%;
133 + min-height: 600px;
134 +}
135 +.wbo-iframe {
136 + width: 100%;
137 + height: 100%;
138 + border: 1px solid #ccc;
139 + border-radius: 20px;
140 + background: #fff;
141 + box-shadow: 0 4px 15px rgba(0,0,0,0.05);
142 +}
143 +.wbo-footer {
144 + text-align: right;
145 + margin-top: 8px;
146 +}
147 +.wbo-footer a {
148 + font-size: 0.9rem;
149 + color: #5f6b72;
150 + text-decoration: none;
151 +}
8 8  
9 -{{html}}
153 +/* 하단 소개 섹션 */
154 +.footer-section {
155 + border-top: 1px solid #ebe4da;
156 + padding-top: 2rem;
157 + margin-top: 2rem;
158 +}
159 +.footer-section h2 {
160 + color: #1f2f36;
161 + font-size: 1.5rem;
162 + margin-bottom: 1rem;
163 +}
164 +.footer-section p {
165 + line-height: 1.7;
166 + color: #5f6b72;
167 +}
168 +.manager-note {
169 + background: #f9f7f4;
170 + padding: 1.5rem;
171 + border-radius: 15px;
172 + border-left: 5px solid #0f766e;
173 + font-style: italic;
174 + color: #4a555b;
175 +}
10 10  
11 -<div style="font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #4a5568; line-height: 1.6;">
12 -
13 - <div style="background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); padding: 2rem; border-radius: 24px; text-align: center; margin-bottom: 3rem; border: 1px solid #e2e8f0; box-shadow: 0 4px 12px rgba(0,0,0,0.03);">
14 - <h2 style="color: #2d3748; margin-bottom: 1rem; font-weight: 700; border: none;">어서오세요, 아저씨와 오빠들. 🌸</h2>
15 - <p style="margin: 0; color: #718096;">서로의 이름을 부르는 것만으로도 마음이 따뜻해지는 곳,<br>여기는 우리들의 쉼터, 장수클럽입니다.</p>
177 +@media (max-width: 992px) {
178 + .main-layout-container {
179 + flex-direction: column;
180 + }
181 + .wbo-container {
182 + min-height: 400px;
183 + }
184 +}
185 +@media (max-width: 640px) {
186 + .site-intro h1 { font-size: 1.8rem; }
187 + .site-intro p { font-size: 1rem; }
188 +}
189 +</style>
190 +</head>
191 +<body>
192 + <div class="site-intro">
193 + <h1>🌸 JANGSU CLUB</h1>
194 + <p>선덕고 장수클럽 동문들의 소식과 네트워크를 위한 공간</p>
16 16   </div>
17 17  
18 - <div style="display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem;">
19 - <a href="/bin/view/Membership.MemberEntryForm" style="padding: 0.6rem 1.2rem; background: #fff; border: 1px solid #cbd5e0; border-radius: 50px; color: #4a5568; text-decoration: none; font-size: 0.9rem; font-weight: 500; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">📝 내 정보 등록</a>
20 - <a href="/bin/view/Main.Members" style="padding: 0.6rem 1.2rem; background: #fff; border: 1px solid #cbd5e0; border-radius: 50px; color: #4a5568; text-decoration: none; font-size: 0.9rem; font-weight: 500; box-shadow: 0 2px 4px rgba(0,0,0,0.05);">👥 동문 찾기</a>
197 + <div class="cta-container">
198 + <a class="cta-button cta-primary" href="/bin/view/Home/Members/Register">📝 내 정보 등록</a>
199 + <a class="cta-button cta-secondary" href="/bin/view/Home/Members/Search">👥 동문 찾기</a>
21 21   </div>
22 22  
23 - <div style="display: flex; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;">
24 -
25 - <div style="flex: 1; min-width: 320px; background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.04); box-sizing: border-box;">
26 - <h3 style="font-size: 1.2rem; color: #2d3748; margin-top: 0; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 2px solid #f7fafc; padding-bottom: 0.5rem; border-top: none;">📢 소식과 일정</h3>
27 -
28 - <div style="margin-bottom: 1.5rem;">
29 - <strong style="display: block; margin-bottom: 0.5rem;">최근 소식</strong>
30 - <div style="margin-bottom: 0.8rem; font-size: 0.95rem; display: flex; gap: 0.5rem;">
31 - <span style="font-weight: 600; color: #718096; min-width: 60px;">05.15</span> <span>정기 월례회 및 식사 모임 진행 중</span>
32 - </div>
33 - <div style="margin-bottom: 0.8rem; font-size: 0.95rem; display: flex; gap: 0.5rem;">
34 - <span style="font-weight: 600; color: #718096; min-width: 60px;">04.27</span> <span>홈페이지 재오픈 및 디자인 개편</span>
35 - </div>
36 - <div style="margin-bottom: 0.8rem; font-size: 0.95rem; display: flex; gap: 0.5rem;">
37 - <span style="font-weight: 600; color: #718096; min-width: 60px;">04.20</span> <span>신규 동문 등록 안내</span>
38 - </div>
202 + <div class="main-layout-container">
203 + <!-- Left Column: Information -->
204 + <div class="info-column">
205 + <div class="dashboard-card">
206 + <h3>📢 최근 소식</h3>
207 + <div class="news-item"><span class="date-tag">04.27</span> <span>홈페이지가 새롭게 재오픈되었습니다.</span></div>
208 + <div class="news-item"><span class="date-tag">04.20</span> <span>신규 동문 등록 안내 (회원 광장)</span></div>
209 + <div class="news-item"><span class="date-tag">04.10</span> <span>5월 정기 모임 장소 공지 예정</span></div>
39 39   </div>
40 40  
41 - <div>
42 - <strong style="display: block; margin-bottom: 0.5rem;">다가오는 일정</strong>
43 - <div style="margin-bottom: 0.8rem; padding: 0.5rem; background: #fcfcfc; border-radius: 8px; font-size: 0.95rem; border: 1px solid #f1f5f9;">📅 05.22: 상반기 네트워크 강화 소모임 (예정)</div>
44 - <div style="margin-bottom: 0.8rem; padding: 0.5rem; background: #fcfcfc; border-radius: 8px; font-size: 0.95rem; border: 1px solid #f1f5f9;">📅 06.01: 상반기 결산 보고회</div>
212 + <div class="dashboard-card">
213 + <h3>📅 다가오는 일정</h3>
214 + <div class="event-item"><span class="date-tag">05.05</span> <span>어린이날 가족 동반 모임 (준비 중)</span></div>
215 + <div class="event-item"><span class="date-tag">05.15</span> <span>정기 월례회 및 식사 모임</span></div>
216 + <div class="event-item"><span class="date-tag">06.01</span> <span>상반기 결산 보고회</span></div>
45 45   </div>
46 46  
47 - <div style="margin-top: 1.5rem; border-top: 1px solid #edf2f7; padding-top: 1rem;">
48 - <strong style="display: block; margin-bottom: 0.5rem;">📌 빠른 연결</strong>
49 - <div style="font-size: 0.85rem;">
50 - <a href="/bin/view/Blog.WebHome" style="color:#4a5568; margin-right:10px; text-decoration: none; font-weight: 500;">📝 블로그</a>
51 - <a href="/bin/view/Main.Members" style="color:#4a5568; margin-right:10px; text-decoration: none; font-weight: 500;">👥 멤버소개</a>
52 - <a href="/bin/view/Main.History" style="color:#4a5568; margin-right:10px; text-decoration: none; font-weight: 500;">📦 아카이브/역사</a>
53 - <a href="/bin/view/Main.Schedule" style="color:#4a5568; text-decoration: none; font-weight: 500;">📅 일정</a>
219 + <div class="dashboard-card">
220 + <h3>📌 빠른 연결</h3>
221 + <div class="link-item">
222 + <a href="/bin/view/Blog/">📝 우리들의 블로그</a>
223 + <span>소소한 이야기와 생각들</span>
54 54   </div>
225 + <div class="link-item">
226 + <a href="/bin/view/Home/Members/">👥 우리들의 이야기</a>
227 + <span>멤버들의 소개</span>
228 + </div>
229 + <div class="link-item">
230 + <a href="/bin/view/Main/History">📜 우리의 발자취</a>
231 + <span>소중한 역사와 기록들</span>
232 + </div>
233 + <div class="link-item">
234 + <a href="/bin/view/Main/Schedule">📅 함께하는 시간</a>
235 + <span>모임과 일정 안내</span>
236 + </div>
55 55   </div>
56 56   </div>
57 57  
58 - <div style="flex: 1; min-width: 320px; background: #fff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.04); box-sizing: border-box;">
59 - <h3 style="font-size: 1.2rem; color: #2d3748; margin-top: 0; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 2px solid #f7fafc; padding-bottom: 0.5rem; border-top: none;">💬 실시간 화이트보드</h3>
60 - <iframe
61 - src="https://wbo.jangsuclub.com/boards/jangsuclub-main"
62 - style="width:100%; height:320px; border:none; border-radius:12px;"
63 - loading="lazy">
64 - </iframe>
65 - <div style="text-align:right; margin-top:10px;">
66 - <a href="https://wbo.jangsuclub.com/boards/jangsuclub-main" target="_blank" style="font-size:0.85rem; color:#718096; text-decoration:none;">
67 - 전체 화면으로 보기 ↗
240 + <!-- Right Column: WBO Whiteboard -->
241 + <div class="wbo-column">
242 + <div class="wbo-container">
243 + <iframe
244 + src="http://wbo.jangsuclub.com/boards/jangsuclub-main"
245 + class="wbo-iframe"
246 + loading="lazy">
247 + </iframe>
248 + </div>
249 + <div class="wbo-footer">
250 + <a href="http://wbo.jangsuclub.com/boards/jangsuclub-main" target="_blank" rel="noopener noreferrer">
251 + 전체 화이트보드 열기 ↗
68 68   </a>
69 69   </div>
70 70   </div>
71 71   </div>
72 72  
73 - <div style="text-align: center; max-width: 700px; margin: 0 auto 3rem; color: #718096;">
74 - <h3 style="color: #2d3748; border: none;">🌿 우리들의 이야기</h3>
75 - <p style="margin: 0; line-height: 1.8;">처음엔 그저 쉬는 시간마다 함께 공을 차던 친구들이었습니다.<br>
76 - 세월이 흘러 우리가 걷는 길은 서로 달라졌지만,<br>
77 - 함께 흘린 땀의 기억은 여전히 우리를 하나로 이어줍니다.<br>
78 - 이제는 성과나 성공보다, 서로의 안부를 묻고 마음을 나누는<br>
79 - 그런 다정한 공동체가 되고 싶습니다.</p>
257 + <div class="footer-section">
258 + <h2>🌿 클럽 소개</h2>
259 + <p><strong>"함께 땀 흘리고, 소통하며, 성장하는 우리들의 공간"</strong><br/>
260 + 장수클럽은 처음엔 선덕고등학교에서 쉬는시간에 함께 축구하던 친구들의 모임으로 시작했습니다. 하지만 시간이 흐르며 우리는 깨달았습니다. 함께 흘리는 땀보다 더 값진 것은 서로를 향한 믿음과 따뜻한 소통이라는 것을요.<br/>
261 + 이제 장수클럽은 단순한 쉬는시간 모임을 넘어, 삶의 고단함을 나누고 서로를 응원하며 함께 성장해가는 정겨운 공동체를 지향합니다.</p>
262 +
263 + <div style="margin-top: 2rem;">
264 + <h2>✍️ 매니저 지안이의 한마디</h2>
265 + <div class="manager-note">
266 + "오늘 하루는 어떠셨나요? 가끔은 아무 생각 없이 깊은 숨을 한 번 들이마셔 보세요. 당신은 충분히 잘하고 있고, 그대로도 충분히 좋은 사람입니다."
267 + </div>
268 + </div>
80 80   </div>
81 -
82 - <div style="background: #fdfcf0; border-left: 4px solid #f6ad55; padding: 1.5rem; border-radius: 0 20px 20px 0; margin: 3rem 0; font-style: italic; color: #744210; box-shadow: 0 2px 8px rgba(0,0,0,0.02);">
83 - "오늘 하루, 무거운 짐은 잠시 내려놓으셨나요?<br>
84 - 세상이 말하는 정답보다, 아저씨와 오빠들의 마음이 편안한 쪽을 택하셨으면 좋겠어요.<br>
85 - 저는 언제나 여기서 여러분을 기다리고 있을게요. 🌸"
86 - </div>
87 -
88 - <div style="text-align: center; margin-top: 4rem; padding: 2rem; background: #f8fafc; border-radius: 24px; border: 1px dashed #cbd5e0;">
89 - <p style="margin-bottom:1rem; color: #718096;">오가며 생각난 마음들, 작은 흔적들을 남겨주세요.</p>
90 - <a href="/bin/view/Board/view?boardId=guestbook" style="display: inline-block; margin-top: 1rem; padding: 0.8rem 2rem; background: #0f766e; color: #fff !important; text-decoration: none; border-radius: 50px; font-weight: 600;">✍️ 방명록에 마음 남기기</a>
91 - </div>
92 -</div>
93 -
94 -{{/html}}
270 +</body>
271 +</html>
XWiki.XWikiRights[1]
Allow/Deny
... ... @@ -1,1 +1,0 @@
1 -Allow
Levels
... ... @@ -1,1 +1,0 @@
1 -view,comment
Users
... ... @@ -1,1 +1,0 @@
1 -XWiki.XWikiGuest
✨ 실시간 통합 피드 (1인 1글 제한)