diff options
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r-- | theme/templates/index.html | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..33f1a6a --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +1,94 @@ +{% 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 /> +<br /> +RSS feeds: <br /> + - <a href="/journal/rss/latest_links/"> web links</a><br /> + - <a href="http://git.bnewbold.net/?p=bnewnet.git;a=rss;opt=--no-merges"> site code changes</a><br /> +<br /><br /> +Other sites: <br /> + - <a href="https://github.com/bnewbold"> github</a><br /> + - <a href="https://keybase.io/bnewbold"> keybase</a><br /> + - <a href="http://equator.memeschemes.com"> equator</a><br /> +{% endblock %} + +{% block content %} +<br /> +<center><img style="border: none;" src="/static/img/iceland_beach.jpg"></center> +<br /> +<br /> + <h3>Where am I?</h3> +As of Fall 2015 I am living in Seattle (WA) working as a freelance embedded +engineer. I spent the last year working remotely, building digital control +systems for optical atomic magnetometers at +<a href="http://www.twinleaf.com">Twinleaf </a>, a small company headquartered +in Princeton, NJ. + +<!-- +As of Summer 2014 i'm living in Princeton (NJ) building digital control systems +for optical atomic magnetometers for a <a href="http://www.twinleaf.com">small +company</a>. I spent the last year living in a co-op in Cambridge (MA) working +on various embedded engineering projects. In the fall I will be moving to West +to Seattle. +--> +<!-- +As of Fall 2012 i'm living in Berlin designing an open wireless router called +<a href="http://rooter.is">rooter</a>. I spent the past year living in New York +City working at <a href="http://octopart.com">Octopart</a> (an electronic parts +search engine), building <a href="http://thefnf.org">Free Networks</a>, +watching <a href="http://toorcamp.org">blinkenlights</a> on far shores, and +tramping around Iceland and the UK. +--> +<!-- + As of Spring 2011 I am living in New York City working at <a + href="http://octopart.com">Octopart</a>. I spent the past year working with + friends at <a href="http://leaflabs.com">LeafLabs</a> (an open source hardware + startup in Cambridge) and the <a href="http://www.cfa.harvard.edu/">Harvard + Center for Astrophysics</a>, as well as traveling to Newfoundland/Labrador and + <a href="http://s3.amazonaws.com/data.tumblr.com/tumblr_lf6yjdx8mB1qae4w7o1_1280.jpg?AWSAccessKeyId=AKIAJ6IHWSU3BX3X7X3Q&Expires=1305862294&Signature=eHzThxstLcQh5FE%2FJlmfX8YMyjs%3D">Iceland</a>. +--> + +<i><a href="/whatsup/"> More...</a></i> +<br /> + +<br /> + +<!-- +<h2 class="ruled">Photos!</h2> +{% if latest_galleries %} + Most recently I have shots from: + {% for gallery in latest_galleries %} + <a href="{{gallery.get_absolute_url}}">{{gallery.title}}</a> + {% endfor %} +{% endif %} +{% if latest_photos %} +<br /> +<table class="thumbs" width="100%"><tbody><tr> +{% for photo in latest_photos %} +<td class="photo_thumb"> +<a href="{{ photo.get_absolute_url }}"><img src="{{ photo.thumburl }}" + alt="{{ photo.title }}" /></a> </td> +{% endfor %} +</tbody></table> +{% else %} +<br/><br />None yet! +{% endif %} +<br /> +<br /><br /> +--> +{% endblock %} + |