-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech_stack_template.html
More file actions
171 lines (146 loc) · 5.83 KB
/
tech_stack_template.html
File metadata and controls
171 lines (146 loc) · 5.83 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site Info -->
<title>{{ name }} - Tech Stack</title>
<meta name="description" content="{{ name }} - Technology Stack & Tools">
<meta name="author" content="{{ name }}">
<!-- Open Graph Tags -->
<meta property="og:title" content="{{ name }} - Tech Stack">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ base_url }}/tech-stack.html">
<meta property="og:image" content="{{ base_url }}/{{ image_path }}">
<meta property="og:image:alt" content="{{ name }} Profile Image">
<!-- Preconnect for Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Custom Font -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/modern_normalize.css" />
<link rel="stylesheet" href="css/html5bp.css">
<link rel="stylesheet" href="css/main.css">
<!-- Set a theme color -->
<meta name="theme-color" content="#fafafa">
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" sizes="180x180" href="/icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="page-header">
<div class="container">
<div class="header-top flex-responsive">
<div class="header-info">
<h1>{{ name }}</h1>
<nav>
<ul class="inline-list flex-responsive">
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="tech-stack.html">Tech Stack</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="page-content">
<div class="container tech-stack-container">
<main>
<section>
<h2 class="section-heading">My Tech Stack</h2>
<div class="tech-grid">
{% for name, details in tech_stack_db.items() %}
<div class="tech-card">
<img class="tech-card-icon" src="{{ details.icon }}" alt="{{ name }} logo">
<span class="tech-card-name">{{ name }}</span>
</div>
{% endfor %}
</div>
</section>
</main>
</div>
</div>
<footer class="page-footer">
<div class="container">
<p>© {{ current_year }} {{ name }}. All rights reserved.</p>
</div>
</footer>
<!-- ===== Style Switcher & JS ===== -->
<div class="theme-toggle-container">
<div id="theme-toggle-icon" class="theme-icon"><i class="fas"></i></div>
</div>
<script src="js/app.js"></script>
<!-- ===== In-house CSS for this page ===== -->
<style>
.page-content {
padding-top: 3rem !important;
}
.page-content .tech-stack-container {
display: block !important;
margin: 0 auto !important;
max-width: 1350px !important;
}
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 1.5rem;
text-align: center;
}
.tech-card {
background-color: var(--card-bg-color);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 2rem 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tech-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.tech-card-icon {
height: 64px;
width: 64px;
object-fit: contain;
margin-bottom: 1rem;
color: var(--text-color);
transition: transform 0.2s ease-in-out;
}
.tech-card-name {
font-weight: 600;
color: var(--text-color);
transition: color 0.2s ease-in-out;
}
body.dark .tech-card-icon {
filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}
/* ADD THESE NEW RULES TO THE END OF YOUR <style> BLOCK */
/* When hovering over a card, scale up the icon inside it */
.tech-card:hover .tech-card-icon {
transform: scale(1.15);
/* Makes the icon grow by 15% */
}
/* When hovering over a card, change the color of the name inside it */
.tech-card:hover .tech-card-name {
color: var(--link-color);
/* Changes the name to your theme's link color */
}
</style>
</body>
</html>