-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtech_stack_template.html
More file actions
98 lines (84 loc) · 3.72 KB
/
tech_stack_template.html
File metadata and controls
98 lines (84 loc) · 3.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ name }} - Tech Stack</title>
<meta name="description" content="{{ name }} - Technology Stack & Tools">
<meta name="author" content="{{ name }}">
<!-- Open Graph -->
<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">
<!-- Fonts -->
<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=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/modern_normalize.css">
<link rel="stylesheet" href="css/html5bp.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/tech-stack.css">
<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">
<!-- Icons -->
<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>
<!-- Theme toggle -->
<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>
</body>
</html>