Forked from https://github.com/emallson/hexo-theme-tufte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
407 B
15 lines
407 B
<article class="content" id="<%= post.slug %>">
|
|
<header>
|
|
<% if(link_title) { %>
|
|
<a href="<%= url_for(post.path) %>">
|
|
<% } %>
|
|
<h1 class="title"><%- post.title %></h1>
|
|
<% if(link_title) { %>
|
|
</a>
|
|
<% } %>
|
|
<p style="margin-bottom: 0;">
|
|
<em id="published-on">Published in <%= post.date.format("MMMM YYYY") %></em>
|
|
</p>
|
|
</header>
|
|
<%- post.content %>
|
|
</article>
|