This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (111 loc) · 4.34 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE HTML>
<html>
<head>
<title>Andrew J Pantuso</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--Google Analytics-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-79733371-1', 'auto');
ga('send', 'pageview');
</script>
<!--mathJax-->
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!--egg.js-->
<script type="text/javascript" src="https://cdn.rawgit.com/mikeflynn/egg.js/master/egg.min.js"></script>
<script type="text/javascript">
var workout = document.createElement("AUDIO");
workout.setAttribute("src","/assets/images/workout.mp3");
var egg = new Egg("w,o,r,k,o,u,t", function() {workout.play();
}).listen();
</script>
<script type="text/javascript">
var egg = new Egg("d,a,n,c,e", function() {
var dance = document.createElement("VIDEO");
dance.setAttribute("src","/assets/images/dance.mp4");
document.getElementById("egg").appendChild(dance);
dance.loop = true;
dance.play();
}).listen();
</script>
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/skel.min.js"></script>
<script src="/assets/js/skel-layers.min.js"></script>
<script src="/assets/js/init.js"></script>
<script src="/assets/js/jquery.fittext.js"></script>
<script src="/assets/js/jquery.lettering.js"></script>
<script src="/assets/js/jquery.textillate.js"></script>
<link rel="stylesheet" href="/assets/css/animate.css" />
<noscript>
<link rel="stylesheet" href="/assets/css/skel.css" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/style-xlarge.css" />
</noscript>
<style type="text/css">
#egg {position:sticky; }
</style>
</head>
<body class="landing">
<!-- Header -->
<header id="header" class="alt">
<h1><strong><a href="/index.html" class="nametag">Andrew Pantuso</a></strong></h1>
<nav id="nav">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/posts.html">Posts</a></li>
<li><a href="/resume.html">RÉsumÉ</a></li>
<li><a href="/index.html#about">About</a></li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<h2 class="tlt">Applied Mathematics</h2>
<br>
<h2 class="tlt2">Computer Science</h2>
<div id="egg"></div>
</section>
<!-- Recent Posts -->
<section class="special" style="margin-top:2em;">
<h2>Recent Posts</h2>
<ul style="list-style-type:none;">
$partial("templates/post-list.html")$
</ul>
</section>
<!-- About -->
<section class="special" id="about">
<h2>About</h2>
<p>
Welcome to my personal website. It is a place where I
post any of my findings on mathematics or computer science.
There may occasionaly be a post about some of my other interests
such as whisky or music. Special credit goes to
<a href="http://www.bronsoloillustration.com/">Ryan Brondolo</a>
for the website's background as well as
<a href="https://jaspervdj.be/hakyll">Hakyll</a> for the static site
generator upon which this site is built.
</p>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="icons">
<li><a href="https://github.com/Ajpantuso" class="icon fa-github"></a></li>
<li><a href="mailto:[email protected]" class="icon fa-envelope"></a></li>
<li><a href="/feed.xml" class="icon fa-rss"></a></li>
</ul>
<ul class="copyright">
<li>© Andrew Pantuso 2015</li>
<li>image: <a href="http://www.bronsoloillustration.com/">Bronsolo Illustration</a></li>
<li>static-site generation: <a href="https://jaspervdj.be/hakyll">Hakyll</a></li>
</ul>
</div>
</footer>
</body>
</html>