first commit 2
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
// Trend01 푸터 전용 CSS 파일을 불러옵니다.
|
||||
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/shop/rb.layout_ft/Trend01/style.css?ver='.G5_SERVER_TIME.'">', 0);
|
||||
?>
|
||||
|
||||
<footer id="site-footer" class="trend01-footer">
|
||||
<div class="footer-inner container">
|
||||
<div class="footer-top">
|
||||
<div class="footer-logo">
|
||||
<a href="<?php echo G5_SHOP_URL; ?>/">
|
||||
<img src="<?php echo G5_THEME_URL; ?>/shop/rb.layout_hd/Trend01/img/logo.png" alt="<?php echo $config['cf_title']; ?>">
|
||||
</a>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<a href="#">About Us</a>
|
||||
<a href="#">이용약관</a>
|
||||
<a href="#">개인정보처리방침</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="footer-info">
|
||||
<span><?php echo $default['de_admin_company_name']; ?></span>
|
||||
<span>대표: <?php echo $default['de_admin_company_owner']; ?></span>
|
||||
<span>사업자등록번호: <?php echo $default['de_admin_company_saupja_no']; ?></span>
|
||||
<br>
|
||||
<span>주소: <?php echo $default['de_admin_company_addr']; ?></span>
|
||||
<span>전화: <?php echo $default['de_admin_company_tel']; ?></span>
|
||||
<span>개인정보보호책임자: <?php echo $default['de_admin_info_name']; ?></span>
|
||||
</div>
|
||||
<div class="footer-copyright">
|
||||
<p>© <?php echo date("Y"); ?> <?php echo $config['cf_title']; ?>. All Rights Reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@@ -0,0 +1,98 @@
|
||||
/* Trend01 Footer Style - Minimal & Clean */
|
||||
|
||||
.trend01-footer {
|
||||
background-color: #f8f8f8;
|
||||
color: #666;
|
||||
padding: 60px 0;
|
||||
font-size: 0.9rem;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
.footer-inner {
|
||||
max-width: 1280px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.footer-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-bottom: 30px;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.footer-logo img {
|
||||
height: 30px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
color: #666;
|
||||
text-decoration: none;
|
||||
margin-left: 20px;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.footer-links a:hover {
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.footer-info span {
|
||||
margin-right: 15px;
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.footer-copyright p {
|
||||
margin: 0;
|
||||
color: #999;
|
||||
font-size: 0.8rem;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* 모바일 반응형 */
|
||||
@media (max-width: 1024px) {
|
||||
.footer-top,
|
||||
.footer-bottom {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-top {
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.footer-links a {
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer-info {
|
||||
order: 2;
|
||||
}
|
||||
|
||||
.footer-copyright {
|
||||
order: 1;
|
||||
}
|
||||
|
||||
.footer-copyright p {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user