forked from wezm/wezm.net
24 lines
953 B
HTML
24 lines
953 B
HTML
<% post_date = WezM::Helpers.parse_post_date(@item) %>
|
|
<% short = @item[:short_url] %>
|
|
<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 %>
|
|
<div id="respond">
|
|
<h2>
|
|
<img src="/images/comment.svg" width="32" height="32" alt="Comment icon" class="comment align-top" />
|
|
Stay in touch!
|
|
</h2>
|
|
<p>Follow me on <a href="https://twitter.com/wezm">Twitter</a>, or <a href="https://mastodon.social/@wezm">Mastodon</a>, <a href="/feed/">subscribe to the feed</a>, or <a href="mailto:wes@wezm.net">send me an email</a>.
|
|
</p>
|
|
|
|
<div class="text-right">
|
|
<small>Short URL: <a href="<%= short %>"><%= short %></a></small>
|
|
</div>
|
|
</div>
|