-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-detail.html
More file actions
105 lines (98 loc) · 3.5 KB
/
Copy pathproject-detail.html
File metadata and controls
105 lines (98 loc) · 3.5 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
95
96
97
98
99
100
101
102
103
104
105
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Details - Kliment Ho</title>
<!-- Title will be updated by JS -->
<link rel="stylesheet" href="css/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;1,400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
</head>
<body>
<header class="site-header">
<div class="container">
<a href="index.html" class="logo">Kliment Ho</a>
<nav class="main-nav">
<ul>
<li><a href="index.html#hero">Home</a></li>
<li>
<a href="index.html#featured-curated-projects">Collection</a>
</li>
<li><a href="resume.html">Atelier</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="project-detail-section">
<div class="container">
<div class="project-detail-header">
<h1>Project Title Loading...</h1>
<p class="tech-stack-display">Technologies: loading...</p>
</div>
<div class="project-detail-content">
<div class="project-media">
<div class="main-project-image">
<img
src="assets/images/placeholder_large.jpg"
alt="Project Main Image Placeholder"
/>
</div>
<div class="project-image-gallery">
<!-- Gallery images will be loaded here by JS -->
</div>
</div>
<aside class="project-description-panel">
<h2>About This Piece</h2>
<div class="description-content">
<p>Loading project description...</p>
</div>
<div class="project-links-box">
<!-- Links (GitHub, Live Demo) will be loaded here by JS -->
</div>
</aside>
</div>
</div>
</section>
</main>
<!-- Simple Image Modal Structure (can be placed at the end of body) -->
<div id="imageModal" class="image-modal" onclick="closeImageModal()">
<span class="close-modal" onclick="closeImageModal()">×</span>
<img class="modal-content" id="modalImage" alt="Expanded Image" />
</div>
<footer class="site-footer">
<div class="container">
<p>
© <span id="current-year">2024</span> Kliment Ho. All Rights
Reserved.
</p>
<div class="social-links">
<a
href="https://github.com/DevKlim"
target="_blank"
aria-label="GitHub"
><i class="fab fa-github"></i
></a>
<a
href="https://linkedin.com/in/klh005"
target="_blank"
aria-label="LinkedIn"
><i class="fab fa-linkedin"></i
></a>
</div>
</div>
</footer>
<script src="js/projects.js"></script>
<!-- Load projects data first -->
<script src="js/script.js"></script>
<!-- The title update logic specific to project-detail.html is now inside script.js -->
</body>
</html>