-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 837 Bytes
/
index.html
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
---
---
<!DOCTYPE html>
<html lang='en'>
<head>
{% include head.html %}
<title>Eric Banisadr</title>
<style>
.caption {
text-align: center;
max-width: 80%;
}
@media(min-width: 450px) {
max-width: 100%;
}
</style>
</head>
<body>
{% include header.html %}
<main class='info-card'>
<img src='{{ site.url }}/headshot.jpg' width='266px' height='266px' alt='My headshot' />
<h1>Eric Banisadr</h1>
<p class='caption'>NYC based, software focused and, soon, a bit of a blogger</p>
<span class='large-icons'>
{% for item in site.social-links %}
{%- include social-icon.html platform=item.platform link=item.link title=item.title -%}
{% endfor %}
</span>
</main>
{% include analytics.html %}
</body>
</html>