1
0
Fork 0
forked from wezm/wezm.net
wezm.net/layouts/home.html

50 lines
1.8 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2010-03-10 09:04:08 +00:00
<%= render '_head' %>
2010-02-25 21:08:49 +00:00
<script src="/js/mojo.js" type="text/javascript" charset="utf-8"></script>
<script src="/js/home.js" type="text/javascript" charset="utf-8"></script>
</head>
2010-02-03 02:42:15 +00:00
<body class="home">
<%= render '_header' %>
2010-06-24 08:39:06 +00:00
<section id="technical" class="column">
<div>
<h1><a href="/technical/articles/">Technical</a>
2010-06-27 21:14:48 +00:00
<sup><a href="http://feeds.feedburner.com/wezm-technical"><img src="/images/black-feed-icon.png" class="feed-icon" width="12" height="12" alt="Black Feed Icon" /></a></sup>
</h1>
<ul class="articles">
<% technical_articles[0..4].each do |article| %>
<%= render '_article', :article => article %>
<% end %>
</ul>
<a href="/technical/articles/" class="more">More &raquo;</a>
</div>
2010-06-24 08:39:06 +00:00
</section>
2010-06-24 08:39:06 +00:00
<section id="personal" class="column">
<div>
<h1><a href="/personal/articles/">Personal</a>
2010-06-27 21:14:48 +00:00
<sup><a href="http://feeds.feedburner.com/wezm-personal"><img src="/images/black-feed-icon.png" class="feed-icon" width="12" height="12" /></a></sup>
</h1>
<ul class="articles">
<% personal_articles[0..4].each do |article| %>
<%= render '_article', :article => article %>
<% end %>
</ul>
<a href="/personal/articles/" class="more">More &raquo;</a>
</div>
2010-06-24 08:39:06 +00:00
</section>
2010-06-24 08:37:48 +00:00
<section id="flickr">
<header>
2010-07-08 22:23:27 +00:00
<h1><a href="http://www.flickr.com/photos/wezm/">Photos</a>
2010-07-09 03:41:57 +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/black-feed-icon.png" class="feed-icon" width="12" height="12" alt="Black 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 &raquo;</a>
2010-06-24 08:37:48 +00:00
</section>
<%= render '_footer' %>
</body>
</html>