2010-01-30 04:33:54 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-03-10 09:04:08 +00:00
|
|
|
<%= render '_head' %>
|
2011-05-04 21:23:39 +00:00
|
|
|
<script src="/js/handlebars.js" type="text/javascript" charset="utf-8"></script>
|
2010-01-30 04:33:54 +00:00
|
|
|
<script src="/js/home.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
</head>
|
2010-02-03 02:42:15 +00:00
|
|
|
<body class="home">
|
2010-02-04 02:38:35 +00:00
|
|
|
<%= render '_header' %>
|
2010-06-24 08:39:06 +00:00
|
|
|
<section id="technical" class="column">
|
2010-01-30 04:33:54 +00:00
|
|
|
<div>
|
2010-03-31 20:58:57 +00:00
|
|
|
<h1><a href="/technical/articles/">Technical</a>
|
2015-08-28 09:18:55 +00:00
|
|
|
<sup><a href="/technical/feed/"><img src="/images/feed-icon.svg" class="feed-icon" width="12" height="12" alt="Feed Icon" /></a></sup>
|
2010-01-30 04:33:54 +00:00
|
|
|
</h1>
|
|
|
|
<ul class="articles">
|
2010-02-04 02:38:35 +00:00
|
|
|
<% technical_articles[0..4].each do |article| %>
|
|
|
|
<%= render '_article', :article => article %>
|
2010-01-30 04:33:54 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
2010-03-31 20:58:57 +00:00
|
|
|
<a href="/technical/articles/" class="more">More »</a>
|
2010-01-30 04:33:54 +00:00
|
|
|
</div>
|
2010-06-24 08:39:06 +00:00
|
|
|
</section>
|
2010-01-30 04:33:54 +00:00
|
|
|
|
2010-06-24 08:39:06 +00:00
|
|
|
<section id="personal" class="column">
|
2010-01-30 04:33:54 +00:00
|
|
|
<div>
|
2010-03-31 20:58:57 +00:00
|
|
|
<h1><a href="/personal/articles/">Personal</a>
|
2015-08-28 09:18:55 +00:00
|
|
|
<sup><a href="/personal/feed/"><img src="/images/feed-icon.svg" class="feed-icon" width="12" height="12" alt="Feed Icon" /></a></sup>
|
2010-01-30 04:33:54 +00:00
|
|
|
</h1>
|
|
|
|
<ul class="articles">
|
2010-02-04 02:38:35 +00:00
|
|
|
<% personal_articles[0..4].each do |article| %>
|
|
|
|
<%= render '_article', :article => article %>
|
2010-01-30 04:33:54 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
2010-03-31 20:58:57 +00:00
|
|
|
<a href="/personal/articles/" class="more">More »</a>
|
2010-01-30 04:33:54 +00:00
|
|
|
</div>
|
2010-06-24 08:39:06 +00:00
|
|
|
</section>
|
2010-01-30 04:33:54 +00:00
|
|
|
|
2010-06-24 08:37:48 +00:00
|
|
|
<section id="flickr">
|
|
|
|
<header>
|
2016-09-29 11:53:36 +00:00
|
|
|
<h1><a href="http://www.flickr.com/photos/wezm/">Recent Photos</a>
|
2015-08-28 09:18:55 +00:00
|
|
|
<sup><a href="http://api.flickr.com/services/feeds/photos_public.gne?id=40215689@N00&lang=en-us&format=atom"><img src="/images/feed-icon.svg" class="feed-icon" width="12" height="12" alt="Feed Icon" /></a></sup>
|
2010-06-27 21:14:57 +00:00
|
|
|
</h1>
|
2010-06-24 08:37:48 +00:00
|
|
|
</header>
|
|
|
|
<ul class="inline"></ul>
|
2010-07-08 22:23:27 +00:00
|
|
|
<a href="http://www.flickr.com/photos/wezm/" class="more">More »</a>
|
2010-06-24 08:37:48 +00:00
|
|
|
</section>
|
2010-02-04 02:38:35 +00:00
|
|
|
<%= render '_footer' %>
|
2011-05-04 21:23:39 +00:00
|
|
|
<script id="image-template" type="text/x-handlebars-template">
|
|
|
|
<li>
|
|
|
|
<a href="{{href}}" rel="prettyPhoto[flickr]"><img src="{{src}}" alt="{{alt}}" /></a>
|
|
|
|
</li>
|
|
|
|
</script>
|
|
|
|
|
2010-01-30 04:33:54 +00:00
|
|
|
</body>
|
|
|
|
</html>
|