-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
94 lines (92 loc) · 3.45 KB
/
about.html
File metadata and controls
94 lines (92 loc) · 3.45 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
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Art of Pilgrim About</title>
<link rel="stylesheet" href="../CSS/aboutstyle.css" />
<link rel="stylesheet" href="../CSS/userinformationstyle.css" />
<link rel="stylesheet" href="../CSS/softwareskillsstyle.css" />
<link rel="stylesheet" href="../CSS/recommendationsstyle.css" />
<link rel="stylesheet" href="../CSS/productionsstyle.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link rel="icon" href="../../Resources/favicon/pilfav.png" type="image/png"/>
</head>
<body>
<div class="top-container">
<!-- Placeholder div where user information will dynamically be added -->
<div class="user-info-panel">
<!-- User information will be injected here by JS -->
<div class="navigation-buttons">
<a href="index.html" class="nav-button">Portfolio</a>
<a href="about.html" class="nav-button">About</a>
</div>
</div>
</div>
<div class="bottom-container">
<div class="horizontal-container">
<h1 class="panel-title">Summary</h1>
<div class="summary-panel">
<p><!-- Summary will be dynamically inserted here --></p>
</div>
<hr />
<h1 class="panel-title">Recommendations</h1>
<div class="recommendations-panel">
<div class="recommendation-content">
<!-- Recommendations get inserted here -->
<div class="recommendation-dots" id="recommendation-dots"></div>
</div>
</div>
<hr />
<h1 class="panel-title">Software Knowledge</h1>
<div class="skills-panel">
<div class="software-tag-container">
<!-- Software tags will be dynamically inserted here -->
</div>
<h1 class="panel-title">Skills</h1>
<div class="software-tag-container">
<!-- Skills tags will be dynamically inserted here -->
</div>
</div>
<hr />
</div>
</div>
<div class="productions-panel">
<div class="productions-subpanels">
<h1 class="panel-title">Productions & Experience</h1>
<!-- Production cards will be added here -->
</div>
</div>
<script src="../JS/summary.js"></script>
<script src="../JS/skills.js"></script>
<script src="../JS/userinformation.js"></script>
<script src="../JS/recommendations.js"></script>
<script src="../JS/productions.js"></script>
<script>
// JavaScript to add 'active' class to the current page's navigation button
document.addEventListener("DOMContentLoaded", function () {
const currentPath = window.location.pathname.split("/").pop();
const navButtons = document.querySelectorAll(".nav-button");
navButtons.forEach((button) => {
if (button.getAttribute("href") === currentPath) {
button.classList.add("active");
}
});
});
</script>
</body>
</html>