-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_template.html
More file actions
137 lines (133 loc) · 5.91 KB
/
index_template.html
File metadata and controls
137 lines (133 loc) · 5.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ name }} - Portfolio</title>
<meta name="description" content="{{ name }} - {{ summary }}">
<meta name="author" content="{{ name }}">
<meta property="og:title" content="{{ name }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ base_url }}/index.html">
<meta property="og:image" content="{{ base_url }}/{{ image_path }}">
<meta property="og:image:alt" content="{{ name }} Profile Image">
<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">
<link rel="stylesheet" href="css/modern_normalize.css">
<link rel="stylesheet" href="css/html5bp.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
<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">
<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">
{% if image_path %}
<img class="header-image" width="256" height="256"
src="{{ image_path }}" alt="{{ name }} Profile Image">
{% endif %}
<div class="header-info">
<h1>{{ name }}</h1>
{% if label %}<h2 class="header-label">{{ label }}</h2>{% endif %}
<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>
{% if contact.email or contact.phone or contact.location %}
<address>
<ul class="inline-list flex-responsive">
{% if contact.email %}
<li><a href="mailto:{{ contact.email }}">{{ contact.email }}</a></li>
{% endif %}
{% if contact.phone %}
<li><a href="tel:+{{ contact.phone | replace('-', '') }}">{{ contact.phone }}</a></li>
{% endif %}
{% if contact.location %}<li>{{ contact.location }}</li>{% endif %}
</ul>
</address>
{% endif %}
{% if social_links %}
<ul class="inline-list flex-responsive">
{% for link in social_links %}
<li>
<a href="{{ link.url }}" rel="noopener noreferrer" aria-label="{{ link.label }}" class="link-with-icon">
<span class="social-icon-wrapper">
{% if link.svg_data %}{{ link.svg_data | safe }}{% endif %}
</span>
{{ link.label }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
</div>
</header>
<div class="page-content">
<div class="container">
<main>
<section>
<h2 class="section-heading">About Me</h2>
{% for item in about_me_full_prose %}
{% if item.type == 'subheading' %}
<h4 class="sub-heading">{{ item.content }}</h4>
{% else %}
<p>{{ item.content | markdown_to_html | safe }}</p>
{% endif %}
{% endfor %}
</section>
</main>
<aside>
<section>
<h2 class="section-heading">At a Glance</h2>
<div class="competency-item-sidebar">
<p><strong>Currently:</strong><br>{{ current_highlights.role }} at {{ current_highlights.institution }}</p>
<hr class="sidebar-hr">
<p><strong>Education:</strong><br>{{ current_highlights.education }}</p>
<hr class="sidebar-hr">
<p><strong>Featured Project:</strong><br><a href="posts/{{ current_highlights.project_slug }}.html">{{ current_highlights.project_title }}</a></p>
</div>
</section>
{% if core_competencies %}
<section>
<h2 class="section-heading">Core Competencies</h2>
<div class="competencies-sidebar">
{% for competency in core_competencies %}
<article class="competency-item-sidebar">
<h3 class="competency-title-sidebar">{{ competency.title }}</h3>
<p class="competency-description-sidebar">{{ competency.description }}</p>
</article>
{% endfor %}
</div>
</section>
{% endif %}
</aside>
</div>
</div>
<footer class="page-footer">
<div class="container">
<p>© {{ current_year }} {{ name }}. All rights reserved.</p>
</div>
</footer>
<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>