aboutsummaryrefslogtreecommitdiffstats
path: root/theme/templates/index.html.path
diff options
context:
space:
mode:
Diffstat (limited to 'theme/templates/index.html.path')
-rw-r--r--theme/templates/index.html.path69
1 files changed, 69 insertions, 0 deletions
diff --git a/theme/templates/index.html.path b/theme/templates/index.html.path
new file mode 100644
index 0000000..49dd456
--- /dev/null
+++ b/theme/templates/index.html.path
@@ -0,0 +1,69 @@
+{% extends "base.html" %}
+
+{% block overhead %}
+<link rel="openid.server" href="http://www.myopenid.com/server" />
+<link rel="openid.delegate" href="http://bnewbold.myopenid.com" />
+<meta http-equiv="X-XRDS-Location" content="http://bnewbold.myopenid.com/xrds" />
+<link rel="stylesheet" type="text/css" href="/static/style/git_wiki.css" />
+{% endblock %}
+
+{% block path %}{% endblock %}
+
+{% block pagetitle %}{% endblock %}
+
+{% block right_stuff %}
+<br />
+<br />
+<br />
+RSS feeds<br />
+ &nbsp; - <a href="/feeds/posts.rss.xml">all posts</a> (<a href="/feeds/posts.atom.xml">atom</a>)<br />
+<br /><br />
+Other sites<br />
+ &nbsp; - <a href="https://github.com/bnewbold/">github</a><br />
+ &nbsp; - <a href="https://keybase.io/bnewbold/">keybase</a><br />
+ &nbsp; - <a href="http://bnewbold.the-nsa.org/">the-nsa.org</a><br />
+ &nbsp; - <a href="http://feeds.bnewbold.net/">feed reader</a><br />
+{% endblock %}
+
+{% block content %}
+<br />
+<center><img style="border: none;" src="/static/img/pnw_fall_path.jpg" width="750px"></center>
+<br />
+<br />
+<br />
+
+{# NB: synchronize with /about/ page #}
+Hi, I'm <b>Bryan Newbold</b>! I like to climb things and look around. Most of my work
+has been dealing with the messy interfaces between information, abstraction,
+and nature (eg, embedded digital electronics for scientific instruments).
+You might know me from around Seattle, New York City, or Boston/Cambridge (<a
+href="http://industry-lab.com/">Industry Lab</a>, MIT).
+
+<br />
+<br />
+
+ <h3>Where am I Now?</h3>
+As of Summer 2016 I am attending the <a href="https://recurse.com">Recurse
+Center</a> in New York City, becoming a stronger (and happier!) programmer.
+My <a href="https://extraordinary.leastsquar.es/">home</a> has been Seattle
+since Fall 2014, where I have been hiking and biking and working remotely for
+<a href="http://www.twinleaf.com">Twinleaf</a>, a small New Jersey company that
+builds Atomic Magnetometers.
+&nbsp;<a href="/whatsup/" style="font-size: smaller;">«previously»</a>
+
+<br />
+<br />
+
+ <h3>Sporatic Writings</h3>
+{% set recent = articles if not all_articles else all_articles %}
+<ul>
+{% for article in recent %}
+ {% if loop.index <= 15%}
+ <li><b>{{ article.date.strftime("%b %Y") }}</b>
+ &nbsp;<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
+ </li>
+ {% endif %}
+{% endfor %}
+</ul>
+
+{% endblock %}