-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (81 loc) · 3.07 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href='https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400italic,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/viewer.css">
<link rel="stylesheet" type="text/css" href="css/icons.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/handlebars.js"></script>
<script type="text/javascript" src="js/viewer.js"></script>
<script type="text/javascript" src="js/template.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script id="projects-template" type="text/x-handlebars-template">
{{#each projects}}
<section class="project toc-item">
<span class="toc-title"><a href="{{link}}">{{name}}</a> </span>
<span class="dots"></span>
<span class="toc-date">{{date}}</span>
<p class="project-desc">{{desc}}</p>
</section>
{{/each}}
</script>
<script id="blog-template" type="text/x-handlebars-template">
{{#each blog-posts}}
<section class="blog toc-item">
<span class="toc-title"><a href="blog/{{link}}">{{title}}</a> </span>
<span class="dots"></span>
<span class="toc-date">{{date}}</span>
</section>
{{/each}}
</script>
<script id="photos-template" type="text/x-handlebars-template">
{{#each photos}}
<li>
<img src="images/{{link}}" alt="{{caption}}" class='image'/>
<p class="italic caption">{{caption}}</p>
</li>
{{/each}}
</script>
<title>A Kevin Kennis Phantasmagoria</title>
</head>
<body>
<div class="container">
<section class="landing">
<header>
<a href="http://kevinkennis.com"><h1>Kevin Kennis</h1></a>
<h3>Technology, travel, words, California</h3>
</header>
<ul class="nav">
<li class="projects-nav nav-item">Projects</li>
<li class="blog-nav nav-item">Blog</li>
<li class="photos-nav nav-item">My World</li>
<li class="about-nav nav-item">About</li>
</ul>
</section>
<section class="projects toc page">
</section>
<section class="blog toc page">
</section>
<section class="photos page">
<ul id='image-list' class="image-list"></ul>
</section>
<section class="about page">
<img src="images/profilepic.jpeg" alt="A Picture of Me" />
<p class="about-text">
↑ That's me.
</p>
<footer class="contact">
<p class="copyright">© Kevin Kennis, 2016. All photos by me.</p>
<section class="icons">
<a href="https://github.com/kkennis"><span class="icon-github-alt"></span></a>
<a href="https://www.linkedin.com/in/kkennis"><span class="icon-linkedin-square"></span></a>
<a href="https://twitter.com/kevinvkennis"><span class="icon-twitter"></span></a>
</section>
</footer>
</section>
</div>
</body>
</html>