diff options
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r-- | theme/templates/index.html | 93 |
1 files changed, 32 insertions, 61 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html index b9bcc32..6dd7445 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -16,12 +16,14 @@ <br /> <br /> <br /> -RSS feeds: <br /> - - <a href="/feeds/posts.rss.xml"> articles</a><br /> +RSS feeds<br /> + - <a href="/feeds/posts.rss.xml">all posts</a> (<a href="/feeds/posts.atom.xml">atom</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 /> +Other sites<br /> + - <a href="https://github.com/bnewbold/">github</a><br /> + - <a href="https://keybase.io/bnewbold/">keybase</a><br /> + - <a href="http://bnewbold.the-nsa.org/">the-nsa.org</a><br /> + - <a href="http://feeds.bnewbold.net/">feed reader</a><br /> {% endblock %} {% block content %} @@ -29,71 +31,40 @@ Other sites: <br /> <center><img style="border: none;" src="/static/img/iceland_beach.jpg"></center> <br /> <br /> - <h3>Where am I?</h3> +<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. -<!-- -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>. ---> + <a href="/whatsup/" style="font-size: smaller;">«previously»</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> + <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> + <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> + </li> + {% endif %} {% endfor %} -</tbody></table> -{% else %} -<br/><br />None yet! -{% endif %} -<br /> -<br /><br /> ---> -{% endblock %} +</ul> +{% endblock %} |