-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (56 loc) · 2.38 KB
/
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
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
---
---
<!DOCTYPE html>
<html>
<head>
<!-- Meta tags -->
<title>Scott Krulcik</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="author" content="Scott Krulcik">
<meta name="description" content="Scott Krulcik's personal profile and contact information.">
<!-- Fonts and CSS - Trying out [Pure](purecss.io) -->
<link rel="stylesheet" href="https://unpkg.com/purecss@0.6.2/build/base-min.css">
<link type="text/css" rel="stylesheet" href="css/pages/index.css" media="screen"/>
<!-- Open Graph -->
<meta property="og:title" content="Scott Krulcik" />
<meta property="og:type" content="profile" />
<meta property="og:url" content="https://scottkrulcik.com/" />
<meta property="og:image" content="https://scottkrulcik.com/rsc/img/scottkrulcik.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="1024" />
<meta property="og:image:alt" content="Scott Krulcik's face" />
<!-- Schema.org -->
<script type='application/ld+json'>
{
"@context": "http://www.schema.org",
"@type": "person",
"name": "Scott Krulcik",
"url": "https://scottkrulcik.com",
"email": "skrulcik@gmail.com",
"image": "https://scottkrulcik.com/rsc/img/scottkrulcik.jpg",
"affiliation": {
"@type": "Organization",
"sameAs": "http://cmu.edu"
},
"sameAs": [
"https://github.com/skrulcik/",
"https://www.facebook.com/scott.krulcik",
"https://www.linkedin.com/in/skrulcik/"
]
}
</script>
</head>
<body>
<div class="container">
<div class="name-box"><h1 class="name"><span class="h2v">Scott</span> <span class="h2v">Krulcik</span></h1></div>
<div class="link-group">
{% for page in site.data.pages %}
<a class="link h2v" href="{{ page.url }}">{{ page.name }}</a>
{% endfor %}
</div>
</div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.6/p5.js"></script>
<script src="./js/boxes.js"></script>
</body>
</html>