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

22 lines
877 B
HTML
Raw Normal View History

<% post_date = WezM::Helpers.parse_post_date(@item) %>
<div class="published">
Published on
<abbr class="calender date" title="<%= post_date.iso8601 %>">
<span class="weekday"><%= post_date.strftime('%a') %></span>,
<span class="day"><%= post_date.day %></span>
<span class="month"><%= post_date.strftime('%B') %></span>
<span class="year"><%= post_date.year %></span>
</abbr>
</div>
<%= yield %>
<% short = short_url("http://www.wezm.net#{@item.identifier}") %>
<div id="respond">
<h2>Got Something to Add?</h2>
2010-02-05 02:56:49 +00:00
<p>Contact me by email or Twitter if you have a comment, correction or just want to get in touch.</p>
<ul class="inline">
2010-02-05 02:56:49 +00:00
<li><a href="#">Email</a></li>
<li><a href="http://twitter.com/home?status=<%= URI.encode("@wezm #{short}") %>">Tweet</a></li>
<li>Short URL: <a href="<%= short %>"><%= short %></a></li>
</ul>
</div>