-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
74 lines (64 loc) · 3.12 KB
/
portfolio.html
File metadata and controls
74 lines (64 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semih Yılmaz - Portfolio</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/85266757?v=4" type="image/png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Refactored CSS -->
<link rel="stylesheet" href="common.css">
<link rel="stylesheet" href="portfolioStyle.css">
</head>
<body>
<div class="background-overlay"></div>
<canvas id="particle-canvas"></canvas>
<div class="container">
<header class="profile-header">
<h1 class="profile-name">Semih Yılmaz's Portfolio</h1>
<p class="profile-tagline">A curated selection of my projects.</p>
</header>
<main>
<section class="link-section back-link-section">
<h2>
<a href="index.html" class="back-to-home-link">
<i class="fas fa-arrow-left fa-fw"></i> Back to Main Page
</a>
</h2>
</section>
<section class="portfolio-display-section">
<h2><i class="fas fa-project-diagram fa-fw"></i> My Projects</h2>
<div class="filter-controls-wrapper">
<div class="filter-control-group">
<label for="type-filter"><i class="fas fa-folder-tree"></i> Type:</label>
<select id="type-filter">
<option value="All">All Types</option>
<option value="Games">Games</option>
<option value="Websites">Websites</option>
<option value="Apps">Apps</option>
<option value="Other">Other</option>
</select>
</div>
<div class="filter-control-group">
<label for="skill-filter"><i class="fas fa-microchip"></i> Skill:</label>
<select id="skill-filter">
<option value="All">All Skills</option>
</select>
</div>
</div>
<div id="project-list-container" class="project-list-container">
<!-- Projects will be dynamically inserted here by portfolio.js -->
<p>Loading projects...</p>
</div>
</section>
</main>
<footer class="page-footer">
<p>© <span id="current-year"></span> Semih Yılmaz. All Rights Reserved.</p>
</footer>
</div>
<!-- Refactored JavaScript -->
<script src="common.js"></script>
<script src="portfolioDataScript.js"></script> <!-- Load data first -->
<script src="portfolioScript.js"></script> <!-- Then load the script that uses the data -->
</body>
</html>