-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.39 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ name }} - Portfolio</title>
<link rel="stylesheet" href="../assets/style.css">
</head>
<body>
<div class="container">
<header>
<h1>{{ name }}</h1>
<p>{{ bio }}</p>
</header>
<section class="skills">
<h2>Skills</h2>
<ul>
{% for skill in skills %}
<li>{{ skill }}</li>
{% endfor %}
</ul>
</section>
<section class="projects">
<h2>Projects</h2>
{% for project in projects %}
<div class="project-card">
<h3>{{ project.title }}</h3>
<p>{{ project.description }}</p>
<a href="{{ project.link }}" target="_blank">View Project</a>
</div>
{% endfor %}
</section>
<section class="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:{{ contact.email }}">{{ contact.email }}</a></p>
<p>GitHub: <a href="{{ contact.github }}" target="_blank">{{ contact.github }}</a></p>
</section>
<footer>
<p>© {{ name }} | Generated with ❤️ by Auto-Portfolio Generator</p>
</footer>
</div>
</body>
</html>