-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter_body.php
32 lines (32 loc) · 1.78 KB
/
footer_body.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-6">
<h5 class="text-white"><?php echo t('site_name'); ?></h5>
<p class="text-white"><?php echo t('site_description'); ?></p>
</div>
<div class="col-md-3">
<h5 class="text-white"><?php echo t('footer.links'); ?></h5>
<ul class="list-unstyled">
<li><a href="index.php#features" class="text-white text-decoration-none"><?php echo t('features.title'); ?></a></li>
<li><a href="index.php#testimonials" class="text-white text-decoration-none"><?php echo t('testimonials.title'); ?></a></li>
<li><a href="login.php" class="text-white text-decoration-none"><?php echo t('login.title'); ?></a></li>
<li><a href="register.php" class="text-white text-decoration-none"><?php echo t('register.title'); ?></a></li>
</ul>
</div>
<div class="col-md-3">
<h5 class="text-white"><?php echo t('footer.contact'); ?></h5>
<ul class="list-unstyled">
<li><i class="bi bi-envelope me-2"></i> [email protected]</li>
<li><i class="bi bi-telephone me-2"></i> 90 111 111 11 11</li>
</ul>
</div>
</div>
<hr class="mt-4">
<div class="text-center">
<p class="mb-0">© <?php echo date('Y'); ?> <?php echo t('site_name'); ?>. <?php echo t('footer.copyright'); ?></p>
<small><?php echo $site_author; ?></small>
</div>
</div>
</footer>