-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (42 loc) · 1.11 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
---
layout: default
title: Home
---
<div id='name-banner'>
<h1 class='name name-big'>
<a href="/">Nolan Nicholson</a>
<!--Code for adding a spinning cube to the header-->
<div id="headercanvas-holder">
<canvas id="headercanvas"></canvas>
</div>
<script src="/assets/js/libraries/gl-matrix.js"></script>
<script src="/assets/js/headercube.js"></script>
<!--end spinning cube code-->
</h1>
</div>
<p>
<a href="https://twitter.com/nolannicholson">Twitter</a> |
<a href="https://github.com/nolannicholson">GitHub</a>
</p>
<hr>
<p>
Hello! I'm Nolan Nicholson, a software developer in Reno, NV.
</p>
<h1>Posts</h1>
<table>
{% for post in site.posts %}
<tr>
<td>
{{ post.date | date_to_string }} -
</td>
<td>
{% if post.thing_url %}
<a href="{{ post.thing_url }}">{{ post.title }}</a>
(<a href="{{ post.url }}">About</a>)
{% else %}
<a href="{{ post.url }}">{{ post.title }}</a>
{% endif %}
</td>
</tr>
{% endfor %}
</table>