-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
75 lines (69 loc) · 3.03 KB
/
footer.php
File metadata and controls
75 lines (69 loc) · 3.03 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<footer id="footer" class="footer position-relative dark-background">
<div class="yellow-line"></div>
<div class="container footer-top">
<div class="row gy-4">
<div class="col-lg-3 col-md-6 col-12 footer-links">
<h4 class="secondary fs-5">About EARIST</h4>
<ul>
<li><a href="ecc_history.php">ECC HISTORY</a></li>
<li><a href="#">OFFICIALS AND CHIEF OF OFFICES</a></li>
</ul>
<h4 class="secondary mt-5 fs-5">Downloadable Forms</h4>
<ul>
<li><a href="#">Click here to Download</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-12 footer-links">
<h4 class="secondary fs-5">Our Affiliates</h4>
<ul>
<li><a href="#">PASUC-NCR Research Consortium</a></li>
<li><a href="#">International Research Conference on Innovation in Engineering, Science, and Technology</a></li>
<li><a href="#">Philippine Association of Institutions for Research</a></li>
<li><a href="#">International Research Conference on Higher Education</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 col-12 footer-links">
<h4 class="secondary fs-5">Contact Us</h4>
<div class="contact-container">
<p><i class="bi bi-geo-alt"></i> Congressional Rd, General Mariano Alvarez, 4117 Cavite</p>
<p><i class="bi bi-telephone"></i> (028)243-9467</p>
<p><i class="bi bi-envelope"></i> earistofficial1945@gmail.com</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12 footer-links">
<div class="d-flex flex-column me-4 d-lg-flex">
<a href="index.php" class="d-flex align-items-center">
<img src="assets/img/transparency_seal.png" class="logo2" alt="">
<h1 class="fs-6 mt-2 ms-2">Transparency Seal</h1>
</a>
</div>
<div class="d-flex flex-column me-4 d-lg-flex mt-3">
<a href="index.php" class="d-flex align-items-center">
<img src="assets/img/FOI.png" class="logo2" alt="">
<h1 class="fs-6 mt-2 ms-2">Freedom of Information</h1>
</a>
</div>
<h4 class="secondary fs-5 mt-4">Follow Us</h4>
<div class="social-links d-flex">
<a href="#"><i class="bi bi-twitter-x"></i></a>
<a href="#"><i class="bi bi-facebook"></i></a>
<a href="#"><i class="bi bi-instagram"></i></a>
</div>
</div>
<center>
<p>© <span id="current-year"></span> EULOGIO "AMANG" RODRIGUEZ INSTITUTE OF SCIENCE AND TECHNOLOGY</p>
</center>
</div>
</div>
</footer>
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<script>
// Dynamic Copyright Year
document.getElementById('current-year').textContent = new Date().getFullYear();
// NEW: Set the dynamic year
const yearSpan = document.getElementById('current-year');
if (yearSpan) {
yearSpan.textContent = new Date().getFullYear();
}
</script>