29 lines
896 B
Text
29 lines
896 B
Text
|
<!DOCTYPE HTML>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title><%= @item[:title] %></title>
|
||
|
<link rel="stylesheet" href="/assets/tufte.min.css">
|
||
|
|
||
|
<!-- you don't need to keep this, but it's cool for stats! -->
|
||
|
<meta name="generator" content="Nanoc <%= Nanoc::VERSION %>">
|
||
|
</head>
|
||
|
<body>
|
||
|
<article class="h-entry">
|
||
|
<h1 class="p-name"><%= @item[:title] %></h1>
|
||
|
<%= yield %>
|
||
|
<footer>
|
||
|
<div class="h-card p-author">
|
||
|
<a class="p-name u-url" href="https://sloane.sh">sloane</a>
|
||
|
</div>
|
||
|
<% if @item[:created_at] %>
|
||
|
<time class="dt-published" datetime="<%= @item[:created_at]&.iso8601 %>">
|
||
|
<%= @item[:created_at]&.strftime('%B %d, %Y') %>
|
||
|
</time>
|
||
|
<% end %>
|
||
|
</footer>
|
||
|
</article>
|
||
|
</body>
|
||
|
</html>
|