-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
90 lines (86 loc) · 3.66 KB
/
template.html
File metadata and controls
90 lines (86 loc) · 3.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title - IDEAL Platform</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/ideal-style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<!-- Professional Navigation (Generated by JavaScript) -->
<nav class="nav">
<div class="container">
<div class="nav-content">
<div class="nav-brand">
<a href="index.html">
<img src="assets/images/logos/ideal.png" alt="IDEAL" class="nav-logo" />
</a>
</div>
<!-- Navigation will be generated here by JavaScript -->
<ul class="nav-menu">
<!-- Dynamic navigation content -->
</ul>
<button class="nav-toggle">☰</button>
</div>
</div>
</nav>
<!-- Page Content Goes Here -->
<main class="main">
<div class="container">
<!-- Your page content -->
<h1>Page Content</h1>
<p>This is a template using dynamic navigation.</p>
</div>
</main>
<!-- Professional Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>Research Institute</h4>
<p>
Advancing scientific discovery through innovative research, open collaboration,
and commitment to academic excellence.
</p>
</div>
<div class="footer-section">
<h4>Research</h4>
<ul>
<li><a href="research.html">Research Areas</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="metadata.html">Metadata Schema</a></li>
<li><a href="#">Methodologies</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Community</h4>
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="#">ResearchGate</a></li>
<li><a href="#">ORCID</a></li>
<li><a href="#">Collaborations</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Contact</h4>
<ul>
<li><a href="https://www.worldbank.org/en/programs/sief-trust-fund/brief/sief-ideal-project-description">Get in Touch</a></li>
<li><a href="#">Office Locations</a></li>
<li><a href="#">Media Inquiries</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Impact Data and Evidence Aggregation Library (IDEAL). Licensed under Creative Commons Attribution 4.0.</p>
</div>
</div>
</footer>
<!-- Load navigation, footer, and other scripts -->
<script src="assets/js/navigation.js"></script>
<script src="assets/js/footer.js"></script>
<script src="assets/js/ideal-script.js"></script>
</body>
</html>