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

56 lines
2 KiB
HTML
Raw Normal View History

<!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>
<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>
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>
</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>
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>
</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>
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 &raquo;</a>
2010-06-24 08:37:48 +00:00
</section>
<%= 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>
</body>
</html>