first commit 2
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/shop/rb.layout_ft/Trend04/style.css?ver='.G5_SERVER_TIME.'">', 0);
|
||||
?>
|
||||
|
||||
<footer id="site-footer" class="trend04-footer">
|
||||
<div class="footer-inner container">
|
||||
<div class="footer-brand">
|
||||
<h3 class="footer-logo-text"><?php echo $config['cf_title']; ?></h3>
|
||||
<p class="footer-desc">Experience the finest quality and timeless design.</p>
|
||||
</div>
|
||||
<div class="footer-nav-wrapper">
|
||||
<div class="footer-nav-col">
|
||||
<h4>COLLECTIONS</h4>
|
||||
<ul>
|
||||
<li><a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=10">New Arrivals</a></li>
|
||||
<li><a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=10">Best Sellers</a></li>
|
||||
<li><a href="#">Limited Edition</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-nav-col">
|
||||
<h4>CUSTOMER CARE</h4>
|
||||
<ul>
|
||||
<li><a href="#">Contact Us</a></li>
|
||||
<li><a href="#">Shipping Info</a></li>
|
||||
<li><a href="#">Returns & Exchanges</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-nav-col">
|
||||
<h4>ABOUT US</h4>
|
||||
<ul>
|
||||
<li><a href="#">Our Story</a></li>
|
||||
<li><a href="#">Craftsmanship</a></li>
|
||||
<li><a href="#">Sustainability</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<div class="footer-info">
|
||||
<span><?php echo $default['de_admin_company_name']; ?></span>
|
||||
<span>Owner: <?php echo $default['de_admin_company_owner']; ?></span>
|
||||
<span>License: <?php echo $default['de_admin_company_saupja_no']; ?></span>
|
||||
<br>
|
||||
<span><?php echo $default['de_admin_company_addr']; ?></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,108 @@
|
||||
/* Trend04 Footer Style - Luxury & Elegant */
|
||||
|
||||
.trend04-footer {
|
||||
background-color: #0f0f0f;
|
||||
color: #aaa;
|
||||
padding: 100px 0 50px;
|
||||
font-size: 0.9rem;
|
||||
border-top: 1px solid #222;
|
||||
/* font-family: 'Playfair Display', serif; */ /* 💡 [수정] 관리자 설정 폰트 사용을 위해 주석 처리 */
|
||||
}
|
||||
|
||||
.footer-inner {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
.footer-brand {
|
||||
text-align: center;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.footer-logo-text {
|
||||
font-size: 2.5rem;
|
||||
color: #fff;
|
||||
margin: 0 0 15px;
|
||||
letter-spacing: 2px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.footer-desc {
|
||||
font-size: 1.1rem;
|
||||
color: #666;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.footer-nav-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 100px;
|
||||
margin-bottom: 80px;
|
||||
border-bottom: 1px solid #222;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
.footer-nav-col h4 {
|
||||
font-size: 1rem;
|
||||
color: #d4af37;
|
||||
margin: 0 0 25px;
|
||||
letter-spacing: 1px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.footer-nav-col ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer-nav-col li {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.footer-nav-col a {
|
||||
color: #888;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s;
|
||||
font-family: sans-serif;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.footer-nav-col a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
font-family: sans-serif;
|
||||
font-size: 0.8rem;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.footer-info span {
|
||||
margin-right: 15px;
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.footer-copyright p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* 모바일 반응형 */
|
||||
@media (max-width: 768px) {
|
||||
.footer-nav-wrapper {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
gap: 40px;
|
||||
}
|
||||
.footer-bottom {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
gap: 20px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user